Список базы данных таблицы строк плагин WordPress

//you have to use global wpdp variable and get_result function in your code page like this...
global $wpdb;
$row = $wpdb->get_results( "SELECT * FROM your_table_in_wordpress");
    foreach ( $row as $row ) { 
      echo "email:".$row->email;
    } //$row->your_column_name in table
Ivan The Terrible