我继承了一个网站,我现在拥有的代码似乎在自定义帖子的帖子循环中显示第一个类别,我按字母顺序判断...
我有这个代码,它通过类别名称和帖子的标题:
class SeedPost {
public $post_id;
public $post_type;
function __construct($post_id) {
$this->post_id = $post_id;
$this->post_type = get_post_type($this->post_id);
}
function display($twocol = false) {
global $post;
$post = get_post($this->post_id);
$cols = $twocol ? 'two' : 'three';
setup_postdata($post);
if($this->post_type == 'portfolio') {
$overlay_class = 'item__overlay--portfolio';
} else {
$overlay_class = 'item--cat-' . SeedHelpers::first_category();
}
?>
<a href="<?php the_permalink(); ?>">
<div class="item item--<?php echo $cols; ?>">
<?php
if(has_post_thumbnail()) {
the_post_thumbnail('news-archive', array('class' => 'item--three__child'));
}
?>
<div class="item__overlay <?php echo $overlay_class; ?>">
<span class="item__cat-title item__cat-title--overlay"><?php echo SeedHelpers::first_category($this->post_type); ?></span>
<?php get_cat_name( $cat_id ) ?>
<h4 class="item__title"><?php the_title(); ?></h4>
<!-- <?php the_excerpt(); ?> -->
</div>
</div>
</div>
</a>
<?php
wp_reset_postdata();
}
您会注意到的代码是:
SeedHelpers::first_category($this->post_type)
这与我相信的功能有关,它将显示分配给该帖子的第一个类别。
这个功能在这里:
static function first_category($post_type = 'post') {
if($post_type == 'post') {
$category = get_the_category();
if($category) {
return $category[0]->cat_name;
}
return false;
} elseif($post_type == 'portfolio') {
$category = get_the_terms(get_the_ID(), 'portfolio-category');
if($category) {
return $category[0]->name;
}
return false;
}
}
我的每个帖子都有一个主要类别和多个子类别,我想更改代码,使其仅显示父子类别...
我已经尝试过我在网上找到的大部分内容,但我似乎无法正常显示...
编辑&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;我上面还有一些代码 - 不确定这与它有什么关系吗?
static function category_shorthand() {
$category = get_the_terms(get_the_ID(), 'portfolio-category');
if($category) {
$category_id = $category[0]->term_id;
$shorthand = get_field('shorthand', 'portfolio-category_' . $category_id);
if($shorthand) {
return $shorthand;
}
return $category[0]->name;
}
return false;
}
该网站位于http://ideedev.co.uk/newseed/portfolio/,并在投资组合项目的框中显示该类别...
答案 0 :(得分:0)
据我阅读文档,get_the_category
应返回一个WP_Term对象数组,其中包含一个名为parent
的公共变量(包含父项的ID)。
猜测您应该能够使用该变量来获取父类别名称,方法是调用父ID为参数的方法get_the_category_by_ID()
。所以你会得到:
if($category) {
$parentId = $category[0]->parent; // contains the parent category ID
return get_the_category_by_ID($parentId); // Returns the name of the category
}
而不是
if($category) {
return $category[0]->cat_name;
}
文档:
get_the_category()
方法:https://developer.wordpress.org/reference/functions/get_the_category/ get_the_category_by_ID()
方法:https://developer.wordpress.org/reference/functions/get_the_category_by_id/