在Woocommerce中更改搜索页面标题

时间:2019-03-04 09:30:36

标签: woocommerce page-title

我想将搜索页面的标题更改为

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 &#8220;%s&#8221; ' ), 
            get_search_query() 
        );

    return $title;
} );

0 个答案:

没有答案