缩短Woocommerce存档页面上的产品标题

时间:2018-11-10 13:49:11

标签: php wordpress woocommerce product title

我发现此代码限制了woocommerce产品标题及其工作。但是问题在于它甚至适用于单个产品页面的所有地方。我该如何排除不在产品页面上的例外情况?

add_filter( 'the_title', 'shorten_woo_product_title', 10, 2 );
function shorten_woo_product_title( $title, $id ) {
    if (get_post_type( $id ) === 'product' ) {
        return wp_trim_words( $title, 4, '...' ); // change last number to the number of words you want
    } else {
        return $title;
    }
}

1 个答案:

答案 0 :(得分:0)

add_filter( 'the_title', 'shorten_woo_product_title', 10, 2 );
function shorten_woo_product_title( $title, $id ) {
    if ( ! is_singular( array( 'product' ) ) && get_post_type( $id ) === 'product' ) {
        return wp_trim_words( $title, 4, '...' ); // change last number to the number of words you want
    } else {
        return $title;
    }
}