WooCommerce |在存档页面的产品标题下方添加产品副标题

时间:2019-03-21 05:03:56

标签: php wordpress woocommerce

在WooCommerce存档页面上,我想在每个产品标题的下方添加一个子标题。

See this image for reference.红色框表示子标题的位置。

我尝试关注Add a custom field value below product title in WooCommerce archives pages 这个人,但是“自定义产品文本”字段对我不可用。

我的Wordpress主题OceanWP有一个subheading field.

我试图更改以上链接文章中的代码,并提出了这个建议,但是它不起作用:

add_action( 'woocommerce_after_shop_loop_item_title', 'subheading_display_below_title', 2 );
function subheading_display_below_title(){
    global $product;

    // Get the custom field value
    $subheading = get_post_meta( $product->get_id(), '_subheading', true );

    // Display
    if( ! empty($subheading) ){
        echo '<p class="subheading">'.$subheading.'</p>';
    }
}

如何在产品归档页面的产品标题下方添加OceanWP产品副标题?

谢谢。

1 个答案:

答案 0 :(得分:0)

要使代码正常工作,首先需要添加产品的副标题自定义字段。为此,您可以这样做:

//Register the product custom field
add_action( 'woocommerce_product_options_general_product_data', 'my_woocommerce_product_subheading' );

function my_woocommerce_product_subheading() {
    $args = array(
        'label' => 'Subheading', // Text in Label
        'placeholder' => 'My Subheading',
        'id' => 'product_subheading', // required
        'name' => 'product_subheading',
        'desc_tip' => 'The product subheading',
    );
    woocommerce_wp_text_input( $args );
}

//Save the custom field as product custom post meta
add_action( 'woocommerce_process_product_meta', 'my_woocommerce_save_product_subheading' );

function my_woocommerce_save_product_subheading( $post_id ) {
    $product = wc_get_product( $post_id );
    $title = isset( $_POST['product_subheading'] ) ? $_POST['product_subheading'] : '';
    $product->update_meta_data( 'product_subheading', sanitize_text_field( $title ) );
    $product->save();
}

//Display the custom field on product page loop below the title
add_action( 'woocommerce_after_shop_loop_item_title', 'subheading_display_below_title', 2 );
function subheading_display_below_title(){
    global $product;

    // Get the custom field value
    $subheading = get_post_meta( $product->get_id(), 'product_subheading', true );

    // Display
    if( ! empty($subheading) ){
        echo '<p class="subheading">'.$subheading.'</p>';
    }
}