我想将搜索页面的标题更改为
ErgebnissefürIhre搜寻nach searched_product
当前我的搜索页面标题是“您搜索了产品名称”
我在主题中的search.php中只能找到<?php get_header(); ?>
我尝试添加过滤器,但是没有用:
/**
* Modify the document title for the search page
*/
add_filter( 'document_title_parts', function( $title )
{
if ( is_search() )
$title['title'] = sprintf(
esc_html__( 'Ergebnisse für Ihre Suche nach “%s” ' ),
get_search_query()
);
return $title;
} );