新版wordpress删除wp_head()中title标签并自定义title显示内容

为什么要删除,因为我要自定义,如果要SEO,你可能需要对标题进行好好处理
有两种方式
方式1,删除后自己写一个functions来实现title显示,然后在模版中调用

1
2
//删除wp_head()中的title标签
remove_action( 'wp_head', '_wp_render_title_tag', 1 );

后面步骤…自定义标签的函数…自己写,想怎么写怎么写,然后主题中函数调用

方式2,直接重写

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
add_filter( 'get_the_archive_title', function ($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>' ;

    }

return $title;

});
原文链接:https://xiaohost.com/2608.html,转载请注明出处。
0

评论0

请先