我终于想出了解决问题的办法restaurants
桌子,位于wp_*
我的WP数据库中的表。希望这有帮助
add_action( \'rest_api_init\', function () {
register_rest_route( \'restos/v1\', \'/all\', array(
\'methods\' => \'GET\',
\'callback\' => \'handle_get_all\',
\'permission_callback\' => function () {
return current_user_can( \'edit_others_posts\' );
}
) );
} );
function handle_get_all( $data ) {
global $wpdb;
$query = "SELECT qname, rname, recommendation FROM `restaurants`";
$list = $wpdb->get_results($query);
return $list;
}
对于我需要的所有CRUD操作,我都有关于此主题的变体