我想替换此字符串的一部分:
$title = implode( " $sep ", array_filter( $title ) );
这里的全部功能:
function wp_get_document_title() {
$title = apply_filters( 'pre_get_document_title', '' );
if ( ! empty( $title ) ) {
return $title;
}
global $page, $paged;
$title = array(
'title' => '',
);
if ( is_404() ) {
$title['title'] = __( 'Page not found' );
} elseif ( is_search() ) {
$title['title'] = sprintf( __( 'Search Results for “%s”' ), get_search_query() );
} elseif ( is_front_page() ) {
$title['title'] = get_bloginfo( 'name', 'display' );
} elseif ( is_post_type_archive() ) {
$title['title'] = post_type_archive_title( '', false );
} elseif ( is_tax() ) {
$title['title'] = single_term_title( '', false );
} elseif ( is_home() || is_singular() ) {
$title['title'] = single_post_title( '', false );
} elseif ( is_category() || is_tag() ) {
$title['title'] = single_term_title( '', false );
} elseif ( is_author() && $author = get_queried_object() ) {
$title['title'] = $author->display_name;
} elseif ( is_year() ) {
$title['title'] = get_the_date( _x( 'Y', 'yearly archives date format' ) );
} elseif ( is_month() ) {
$title['title'] = get_the_date( _x( 'F Y', 'monthly archives date format' ) );
} elseif ( is_day() ) {
$title['title'] = get_the_date();
}
if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
$title['page'] = sprintf( __( 'Page %s' ), max( $paged, $page ) );
}
if ( is_front_page() ) {
$title['tagline'] = get_bloginfo( 'description', 'display' );
} else {
$title['site'] = get_bloginfo( 'name', 'display' );
}
$sep = apply_filters( 'document_title_separator', '-' );
$title = apply_filters( 'document_title_parts', $title );
$title = implode( " $sep ", array_filter( $title ) );
$title = wptexturize( $title );
$title = convert_chars( $title );
$title = esc_html( $title );
$title = capital_P_dangit( $title );
return $title;
}
function _wp_render_title_tag() {
if ( ! current_theme_supports( 'title-tag' ) ) {
return;
}
echo '<title>' . wp_get_document_title() . '</title>' . "\n";
}
但是,这是在wp-includes/general-template.php
之下,我想通过我的functions.php
对此进行过滤,以免影响核心文件。
有没有办法可以过滤$sep
函数之前和之后的空格?基本上我希望标题因SEO原因而改变,只希望分隔符出现在首页上......这些内容(当然这不起作用):
<?php if ( is_front_page() ) {
$title = implode( "", array_filter( $title ) );
} else {
$title = implode( " $sep ", array_filter( $title ) );
} ?>
有没有办法过滤或使用str_replace
?
答案 0 :(得分:2)
在WordPress 4.4 +中尝试document_title_separator
过滤器和pre_get_document_title
。
将分隔符设置为$%
,然后将其与preg_replace
结合使用。然后,您可以将模式与添加的空格匹配,例如'/ \$% /'
与整个标题匹配。
在functions.php
:
<?php
if ( is_front_page() ) {
add_filter('pre_get_document_title', 'theme_mod_title');
}
function theme_mod_title() {
add_filter('document_title_separator', function() {
return '$%';
});
remove_filter('pre_get_document_title', 'theme_mod_title');
$pattern = '/ \$% /';
$desired = '-';
$title = wp_get_document_title();
return preg_replace($pattern, $desired, $title);
}