概览
如果计划移除归档页面分类或标签名称前面的 “分类:” 和 “标签:”,将该代码添加到当前使用的主题的 functions.php
文件即可显效。
代码
function my_theme_archive_title( $title ) {
if ( is_category() ) {
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
} elseif ( is_author() ) {
$title = '<span class="vcard">' . get_the_author() . '</span>';
} elseif ( is_post_type_archive() ) {
$title = post_type_archive_title( '', false );
} elseif ( is_tax() ) {
$title = single_term_title( '', false );
}
return $title;
}
add_filter( 'get_the_archive_title', 'my_theme_archive_title' );
原文
https://www.wpdaxue.com/the_archive_title.html
友情提示:本站所有文章,如无特殊说明或标注,均为何星星原创发布。与此同时,趋于近年来本站的文章内容频繁被他站盗用与机器采集,现已全局禁用网站文字内容操作,了解详情或转载文章请 点此 继续!
2 条评论
李某某 · 2020年12月21日 09:49
毫无反应呐
何星星 · 2020年12月21日 16:22
确认代码和增加的位置是否正确。