所以我有一个 php 脚本需要检索某个“页面”,而不是帖子,而是一个页面,在 wordpress 中,我想检索一个指向特定标签的页面。我想知道如何检索特定页面,它需要的唯一参数是 tag->term_id。
我尝试在谷歌搜索来实现这一点。这可能吗?
谢谢..
所以我有一个 php 脚本需要检索某个“页面”,而不是帖子,而是一个页面,在 wordpress 中,我想检索一个指向特定标签的页面。我想知道如何检索特定页面,它需要的唯一参数是 tag->term_id。
我尝试在谷歌搜索来实现这一点。这可能吗?
谢谢..
使用WP_Query
with post_type
set topage
查询数据库中的页面。您可以使用该tag_id
参数按标签缩小范围。posts_per_page
使用set to将其限制为一个结果1
。
//narrow down your query with $args
$args = array('post_type'=>'page', 'tag_id'=>3, 'posts_per_page'=>1);
// The Query
$the_query = new WP_Query( $args );
// The Loop
while ( $the_query->have_posts() ) :
$the_query->the_post();
echo '<li>' . get_the_title() . '</li>';
endwhile;