php 在单个帖子#wordpress上显示自定义类别

Posted

tags:

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

<?php
	// To call custom category and fetch the category by slug
	// Change $term->slug to $term->name to display capitalize name

    $terms = get_the_terms( $post->ID , 'custom-taxonomy' );
    foreach ( $terms as $term ) {
      echo $term->slug;
    }

	// Displaying full post with selected custom category
    $my_query = new WP_Query( array(
        'post_type'=>'news',
        'posts_per_page'=>4,
        'tax_query'=>array(
            array(
                'taxonomy'=>'custom-taxonomy',
                'field'=>'slug',
                'terms'=>'john-doe'  // change to real slug
            )
         )
    ) );

    while ( $my_query->have_posts() ) {
        $my_query->the_post();
        // display post
    }
?>

以上是关于php 在单个帖子#wordpress上显示自定义类别的主要内容,如果未能解决你的问题,请参考以下文章

在单个自定义帖子类型中显示所选类别(Wordpress)

php 在主博客和存档页面上显示WordPress自定义帖子类型

在 WordPress 中显示当前的帖子自定义分类

停止显示自定义帖子类型的 wordpress 搜索

PHP 显示具有自定义摘录长度的帖子和自定义在WordPress中阅读更多文本

Wordpress 在自定义帖子类型存档页面上按日期排序