在自定义主题中设置类别页面标题

时间:2018-11-12 作者:Rohan Hapani

我是wordpress的新手。我正在使用一个自定义主题并在wordpress中安装。

我想更改类别页面标题并从标题中删除“类别:”前缀。如何从admin管理它?

我不懂wordpress编程。所以,我需要使用管理面板进行设置。

请引导我。谢谢

页面URL:http://localhost/tutorialsite/category/magento/magento-2/

enter image description here

1 个回复
最合适的回答,由SO网友:middlelady 整理而成

在您的functions.php 添加以下代码,摘自Remove "Category:", "Tag:", "Author:" from the_archive_title.

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 = \'<span class="vcard">\' . get_the_author() . \'</span>\' ;

        }

    return $title;

});
当然,您需要了解functions.php 作品https://codex.wordpress.org/Functions_File_Explained

结束

相关推荐

正在尝试将Get_the_Title挂钩添加到该行

您好,创建联系人表单。正在尝试将get\\u the\\u title()添加到此代码行中:<?php echo \'<textarea style=\"margin-left: 15px; width: 246px;\" rows=\"3\" cols=\"28\" placeholder=\"I am interested in:\" name=\"cf-message\">\' . ( isset( $_POST[\"cf-message\"] ) ? esc_attr( $_PO