wordpress分类列表页去掉“分类”字样的代码如下,放到模板目录下的functions.php最后面:
/** * 把“分类”去掉 * @author albert * @date 2021-06-01 */ 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' );
上一篇: 《建站管家》二次开发文档