php 在wordpress中按类别列出帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在wordpress中按类别列出帖子相关的知识,希望对你有一定的参考价值。

<?php
// Fetch All Service Categories & List their posts
$service_categories = get_terms(array(
    'taxonomy' => 'service_type',
    'parent' => 0
        ));


foreach ($service_categories as $service_category) {
    echo '<li>' . $service_category->name . '</li>';

    $serive_detail = get_posts(array('service_type' => $service_category->slug, 'post_type' => 'service', 'posts_per_page' => -1));
    
   // var_dump($serive_detail);

    foreach ($serive_detail as $serivep) {
        echo $serivep->post_title;
        echo $serivep->post_content;
        echo "<br><br>";
    }
}
?>

以上是关于php 在wordpress中按类别列出帖子的主要内容,如果未能解决你的问题,请参考以下文章

使用 ajax 通过 WordPress 菜单在 div 中按类别加载最新帖子

php Wordpress - 列出所有(自定义帖子类型)帖子类别

PHP 按类别列出WordPress帖子

按类别列出WordPress帖子

如何获取在 Wordpress 中按类别过滤的自定义帖子类型的永久链接?

PHP 在Wordpress中按字母顺序排列的相邻帖子