我想将WordPress标题分隔符(-)更改为管道符号(|)。谁能告诉我该怎么做?
答案 0 :(得分:1)
将“-”替换为“ |”您可以按照以下步骤操作:
add_theme_support( 'title-tag' );
(它可能在functions.php after_setup_theme
钩子中)<title><?php wp_title('|',true,'right'); ?></title>
POST_NAME | BLOG_NAME
,这一行代码应该很棒<?php wp_title('|',true,'right'); ?> <?php bloginfo('name'); ?>
要了解更多信息,请访问link