你必须在document_title_parts 筛选以根据您的需要进行调整。
Example:
/**
* Modify the document title for the search page
*/
add_filter( \'document_title_parts\', function( $title )
{
if ( is_search() )
$title[\'title\'] = sprintf(
esc_html__( \'“%s” result page\', \'my-theme-domain\' ),
get_search_query()
);
return $title;
} );
对于多页搜索页面,您必须执行以下操作:
/**
* Modify the page part of the document title for the search page
*/
add_filter( \'document_title_parts\', function( $title ) use( &$page, &$paged )
{
if ( is_search() && ( $paged >= 2 || $page >= 2 ) && ! is_404() )
$title[\'page\'] = sprintf(
esc_html__( \'This is %s page\', \'my-theme-domain\' ),
max( $paged, $page )
);
return $title;
} );
根据您的需要修改我给出的示例。
title-tag 必须由主题支持。