Wordpress获得匹配帖子内容的帖子ID

时间:2015-10-13 18:19:58

标签: wordpress

PROJECTNAME中是否有办法让我生成Wordpress的帖子内容,它会给我帖子ID?

提前致谢。

1 个答案:

答案 0 :(得分:0)

可以使用带有搜索参数的WordPress真棒WP查询类来实现。例如以下查询将搜索任何帖子" hello"其中的单词并根据需要显示其Post Ids:

<?php
     // 's' parameter is for search
    $the_query = new WP_Query( array( 's' => 'hello' ) );

       if ( $the_query->have_posts() ) {
          while ( $the_query->have_posts() ) {
              $the_query->the_post();
     //now we can echo anything we want like e.g. IDs
              echo get_the_ID();
        }

       } else {
                 // no posts found
       }
         /* Restore original Post Data */
         wp_reset_postdata();

 ?>