用ACF自定义字段替换Woocommerce分类标准存档页面标题

时间:2018-12-02 09:29:35

标签: php wordpress woocommerce advanced-custom-fields custom-taxonomy

我正在尝试找出如何用ACF字段替换“ woocommerce_page_title”?如果没有,则应退回到“ woocommerce_page_title();”。我似乎找不到任何超级有用的东西。您的帮助将不胜感激。

add_filter( 'woocommerce_page_title', 'custom_title' );
function custom_title( $title ) {
    $title = get_field("custom_tag_h1");
    return $title;
}

1 个答案:

答案 0 :(得分:0)

对于“存档”页面分类标题和ACF:

woocommerce_page_title适用于商店页面和分类档案页面,因此在ACF中:

enter image description here

然后在产品类别(例如(此处为“服装”))中,设置自定义标题:

enter image description here

在代码中,您需要获取分类档案页面的查询对象WP_Term对象),并将其设置如下:

add_filter( 'woocommerce_page_title', 'custom_title' );
function custom_title( $page_title ) {
    if ( ! function_exists('get_field') || is_search() )
        return $page_title;

    if ( is_tax() ) {
        $term   = get_queried_object();
        $the_id = $term->taxonomy . '_' . $term->term_id;
    } elseif ( is_shop() ) {
        $the_id = wc_get_page_id( 'shop' );
    }
    return get_field( "custom_tag_h1", $the_id ) ? get_field( "custom_tag_h1", $the_id ) : $page_title;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试和工作。

enter image description here