0
我怎樣才能得到這個職位標題列表,帖子內容不少於300個字..如何獲得稱號後在帖子內容長度小於300個字在WordPress
1)帖子標題(職位表)其中交含量超過300個字少在WordPress
2)帖子標題帖子的(列表),其中交含量比300-500字少在WordPress
是有此要求的任何插件或濾波函數。
我怎樣才能得到這個職位標題列表,帖子內容不少於300個字..如何獲得稱號後在帖子內容長度小於300個字在WordPress
1)帖子標題(職位表)其中交含量超過300個字少在WordPress
2)帖子標題帖子的(列表),其中交含量比300-500字少在WordPress
是有此要求的任何插件或濾波函數。
我不相信有,沒有。
如果您的站點不包含大量的帖子,您可以使用WP_Query並使用一些PHP代碼檢查所有帖子,例如
$all_posts = new WP_Query(array(
"post_type" => "post",
"posts_per_page" => 10000,
"post_status" => "any"
));
while($all_posts->have_posts()) {
$all_posts->the_post();
if(str_word_count($post->post_content, 0) < 300) {
print $post->post_title . "<br />\n";
}
}
https://developer.wordpress.org/reference/functions/query_posts/ –