在WordPress中更改标题辅助符号或分隔符

时间:2017-04-25 作者:J. Shabu

我已添加add_theme_support( \'title-tag\' ); “我的函数”中的“主题设置”中的函数。php现在将标题显示为:

title-WordPress
我希望更改如下:

title | WordPress

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

要更改标题分隔符,需要使用此筛选器document_title_separator 从WordPress 4.4.0开始引入。

以下是如何自定义分隔符:

apply_filters( \'document_title_separator\', \'your_custom_separator\' );
function your_custom_separator( $separator ) {

    $separator = \'|\';

    return $separator;
}
希望这有帮助。

Updated Answer

add_filter( \'document_title_separator\', \'your_custom_separator\' );
function your_custom_separator( $separator ) {

    $separator = \'|\';

    return $separator;

}
我用216个主题测试了这个。See code See working site

相关推荐

Wp-Content/Themes文件夹在哪里?

我想为我的wordpress站点创建一个子主题(仅供参考),这样我的更改就不会被每次更新所覆盖。显然,我需要在wp-content/themes文件夹中为子主题创建一个子文件夹。问题是,我找不到它。我曾尝试将wp内容和wp内容/主题添加到域中-它生成了一个空白的白色页面。我试着在spotlight文件搜索(是的,我有一台mac电脑)中搜索它(只是“wordpress”),它只找到了一些我在2010年安装的wordpress文件夹,我甚至都不记得做过这些。由于我最近在过去两周(2014年5月)建立了这个网站