php 获取特定帖子的类别

Posted

tags:

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

<?php
  $post_id = get_the_ID(); // gets the post's ID
  $post_categories = wp_get_post_categories( $post_id ); // gets the post's ID
  $cats = array(); // create an array

  $len = count($post_categories); // how many categories does this post have?
  $i = 0; // start count at 0
  foreach($post_categories as $c){
    $cat = get_category( $c );
    $cats[] = array( 'name' => $cat->name, 'slug' => $cat->slug ); // insert category into new array
    echo $cat->name;
    if($i !== $len - 1) {
			echo ", "; // add a comma
		}
		$i++;
  }
?>

以上是关于php 获取特定帖子的类别的主要内容,如果未能解决你的问题,请参考以下文章

php 来自帖子类型的特定类别帖子的帖子

php 随机更多特定类别的帖子

php 按ID将相邻的帖子导航添加到特定类别的帖子。

获取带有特定类别附件的帖子?

php 将自定义模板分配给具有特定类别(和子级)的帖子。

PHP 在页面上以随机顺序显示特定类别的所有帖子