Answers for "list database table rows plugin wordpress"

PHP
0

list database table rows plugin 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
Posted by: Guest on May-11-2021

Code answers related to "list database table rows plugin wordpress"

Browse Popular Code Answers by Language