我在数据库表中有一些数据。我不知道如何在wordpress中显示页面上的数据
答案 0 :(得分:1)
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)