我想使用wordpress的query_posts()
Codex功能。但我怎么能用它,我是wordpress的新手。基本上想要按post_title
名称
$titleName = "My Post title name";
query_posts("post_title=".$titleName);
while ( have_posts() ) : the_post();
echo the_title();
endwhile;
上述语法是正确的还是遗漏了什么?
答案 0 :(得分:1)
这不是一个确切的答案,而是一个替代品。 如果你不能通过帖子名称来完成它,你可以通过它的slug来获得它。
显示帖子/页面由Slug
以slug显示帖子:
$query = new WP_Query( 'name=about-my-life' );
按slug显示页面:
$query = new WP_Query( 'pagename=contact' );