Categories
WordPress 知识

经典问题

在 category.php 页面获取当前 category

if(is_category()) {
$cat = get_query_var(‘cat’);
$yourcat = get_category($cat);
echo “该分类别名为” . $yourcat->slug;
}

Leave a Reply

Your email address will not be published. Required fields are marked *