我正试图从“shop_order
" post_type
.
这是一个多站点网络,所以我使用switch_to_blog(1)
. 当我将帖子类型设置为“post”时,效果非常好,我可以从正确的站点获得帖子。当我设置post_type
至“shop_order
“我什么也得不到,尽管有两万”shop_order
\' 数据库中的记录。
switch_to_blog(1);
$args = array (
//\'post_type\' => \'post\',
\'post_type\' => \'shop_order\',
\'posts_per_page\' => 2,
);
$posts = get_posts( $args );
restore_current_blog();
var_dump($posts);