0

所以我有一个 php 脚本需要检索某个“页面”,而不是帖子,而是一个页面,在 wordpress 中,我想检索一个指向特定标签的页面。我想知道如何检索特定页面,它需要的唯一参数是 tag->term_id。

我尝试在谷歌搜索来实现这一点。这可能吗?

谢谢..

4

1 回答 1

1

使用WP_Querywith post_typeset 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;

http://codex.wordpress.org/Class_Reference/WP_Query

于 2013-02-23T20:55:12.373 回答