我是wordpress的新手。我使用一个自定义的主题并安装在wordpress中。
我想要更改类别页面标题,并删除“类别:”前缀从标题。我如何从管理员那里管理它?
我不懂wordpress编程。所以,我需要设置使用管理面板。
请引导我。谢谢!!
页面网址:http://localhost/tutorialsite/category/magento/magento-2/

发布于 2018-11-12 17:11:57
在主题文件的functions.php中添加以下代码,摘自从_归档_标题:将“类别:”、“标签:”、“作者。
add_filter( 'get_the_archive_title', function ($title) {
if ( is_category() ) {
//being a category your new title should go here
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
} elseif ( is_author() ) {
$title = '' . get_the_author() . '' ;
}
return $title;
});当然,您需要了解functions.php是如何工作的。https://codex.wordpress.org/Functions_文件_解说
https://wordpress.stackexchange.com/questions/319014
复制相似问题