gpt4 book ai didi

php - 查找包含特定单词的所有 Wordpress 帖子

转载 作者:行者123 更新时间:2023-12-05 09:24:01 30 4
gpt4 key购买 nike

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

最佳答案

您可以使用 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
}

告诉我进展如何!

关于php - 查找包含特定单词的所有 Wordpress 帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17105161/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com