我试着用WP_query
和get_posts
没有成功。我需要有一个基于其键/值对的帖子postmeta
. 这是我的最新尝试:
<?php
$args = array(
\'meta_query\' => array(
array(
\'key\' => "team_leader_subscription_id",
\'value\' => 38
)
),
\'post_type\' => \'novathon-team\',
\'posts_per_page\' => \'1\'
);
// run query ##
$posts = get_posts( $args );
$q=WP_query($args);
print "DEV: posts:<pre>"; print_r($posts);print_r($q); print "</pre>";
它返回的是空数组,虽然我知道有一个帖子有posteta
team_leader_subscriptions_id
作为键和
38
作为值。为什么会这样?我还尝试使用
WP_query
同样的论点有着不同的形式,但仍然一无所获。我错过了什么?