PROJECTNAME
中是否有办法让我生成Wordpress
的帖子内容,它会给我帖子ID?
提前致谢。
答案 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();
?>