如何在wordpress中的数据库表中显示页面上的数据

时间:2015-05-11 04:30:11

标签: php wordpress

我在数据库表中有一些数据。我不知道如何在wordpress中显示页面上的数据

2 个答案:

答案 0 :(得分:1)

您可以使用ShortCodeWPDB,例如:

function custom_table_data_callback( $atts ) {
   // Get Global WPDB Object
   global $wpdb;

   $data = $wpdb->get_results( 'SELECT * FROM your_table', output_type );

   //Then you can loop through the data variable

   foreach($data as $row){
          //Generate your table html here
   }     

}
add_shortcode( 'custom_table_data', 'custom_table_data_callback' );

之后在您的页面中使用[custom_table_data]短代码。

答案 1 :(得分:0)

请尝试阅读以下文章:

http://codex.wordpress.org/Class_Reference/wpdb