WordPress标题标签未更改

时间:2017-09-02 作者:grey221

我正在开发我的WordPress测试网站,我正在尝试将标题标记改为非常短的连字符。(-)我在函数中添加了代码。允许我更改标题标记的php文件。

add_filter (\'document_title_separator\', \'wpse_set_document_title_separator\') ;

function
wpse_set_document_title_separator ($sep)
{
    return (\'-\') ;
}
因此,在代码中,(“-”)是我放置所需标题标记的地方,即短连字符,但它仍然是默认的(-)长连字符。。。请帮帮我。

1 个回复
SO网友:Cedon

这个return 函数不需要(). 因此,您希望函数如下所示:

function wpse_set_document_title_separator ( $sep) {
    return \'-\';
}
add_filter( \'document_title_separator\', \'wpse_set_document_title_separator\' );

结束

相关推荐

Post thumbnail alt title

我想知道帖子缩略图是否需要“Alt title”,如“title”,以及如何将其添加到我的相关帖子查询中。。。我正在使用以下代码获取帖子缩略图:<div class=\"td-module-thumb\"> <a href=\"<?php the_permalink(); ?>\" title=\"<?php the_title_attribute(); ?>\"> <?php if (has_post_thumbnail()) {&#