找到包含某个单词的所有Wordpress帖子

时间:2013-06-14 09:20:14

标签: php wordpress post

在不添加任何标签或类别的情况下,我需要一种方法来生成一个页面,列出包含该单词的所有Wordpress帖子,例如,“design”在其中的某个位置。有谁知道怎么做?

1 个答案:

答案 0 :(得分:4)

您可以使用WP_Query进行搜索:

<?php
$query = new WP_Query( 's=keyword' );

if ($query->have_posts()){
  while ( $query->have_posts() ) { $query->the_post();
    echo '<h2>';
      the_title();
    echo '</h2>';
    the_content();
  } //end while
}

让我知道它是怎么回事!