好吧,此代码获取类别列表并将其显示在分配帖子的主题中。我想将 nofollow 标签添加到此列表中。我在网上冲浪并找不到解决方案。我找到的唯一解决方案是修改 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' )
);
?>
还有什么办法吗?