将自定义内容添加到WooCommerce产品说明

时间:2017-08-08 20:36:18

标签: php wordpress woocommerce product hook-woocommerce

我正在尝试在我的描述结尾注入一些文字。 过滤器可以吗?

或者我是否需要通过儿童主题这样做? 一直试图找到描述的钩子,但只能找到一个简短的描述。 例如:

  

这是一个描述。

     

只是一些示例文字来填写说明。

我想要的是注入“这是描述中的最后一行”所以洞的描述看起来像这样。

  

这是一个描述。

     

只是一些示例文字来填写说明。

     

这是说明中的最后一行

我在简短描述之前注入文本的代码是这样的:

add_filter( 'woocommerce_short_description', 'single_product_short_descriptions', 10, 1 );
function single_product_short_descriptions( $post_excerpt ){
    global $product;

    if ( is_single( $product->id ) )
        $post_excerpt = '<div class="product-message"><p>' . __( "Article only available in the store.", "woocommerce" ) . '</p></div>' . $post_excerpt;

    return $post_excerpt;
}

1 个答案:

答案 0 :(得分:4)

您可以使用此强加于 the_content 过滤器钩子的自定义函数:

add_filter( 'the_content', 'customizing_woocommerce_description' );
function customizing_woocommerce_description( $content ) {

    // Only for single product pages (woocommerce)
    if ( is_product() ) {

        // The custom content
        $custom_content = '<p class="custom-content">' . __("This is the last line in the description", "woocommerce").'</p>';

        // Inserting the custom content at the end
        $content .= $custom_content;
    }
    return $content;
}

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

添加 - 空白时强制产品说明(如果您希望显示此自定义文字)

add_filter( 'woocommerce_product_tabs', 'force_description_product_tabs' );
function force_description_product_tabs( $tabs ) {

    $tabs['description'] = array(
        'title'    => __( 'Description', 'woocommerce' ),
        'priority' => 10,
        'callback' => 'woocommerce_product_description_tab',
    );

    return $tabs;
}

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