这个代码可以获取分类列表, 并在指定该职位的主题中显示它。 我想在此列表中添加无跟踪标记。 我浏览了网络, 无法找到解决方案。 我找到的唯一解决方案是修改 Wordpress 核心文件。 但我不想修改核心文件 。
<footer class="entry-meta">
<?php
/* translators: used between list items, there is a space after the comma */
$category_list = get_the_category_list( __( , , basically ) );
$meta_text = __( Category: %1$s , basically );
printf(
$meta_text,
$category_list,
get_permalink(),
the_title_attribute( echo=0 )
);
?>
还有别的办法吗?