去掉 wordpress 分类页标题中的“分类”字样

发布时间: 2018-07-11 11:11:35 作者: 大象笔记

grep 发现 archive.php 代码中包含

<?php the_archive_title( '<h1 class="hestia-title">', '</h1>' ); ?>

the_archive_title 是 wordpress 内置函数,无法直接修改。

the_archive_title( string $before = '', string $after = '' )

Display the archive title based on the queried object.

解决方法

在 functions.php 中添加

add_filter( 'get_the_archive_title', function ( $title ) {
    if( is_category() ) {
        $title = single_cat_title( '', false );
    }

    return $title;
});

参考

http://doc.weixiaoduo.com/wordpress/3827.html

我是一名山东烟台的开发者,联系作者