Отображение статуса отсутствия товаров в архивах WooCommerce, за исключением определенных метаданных

#php #wordpress #woocommerce #metadata #product

#php #wordpress #woocommerce #метаданные #продукт

Вопрос:

Я использую следующее для отображения статуса товаров на страницах архивов WooCommerce:

 <?php
//add action give it the name of our function to run
add_action( 'woocommerce_after_shop_loop_item_title', 'wcs_stock_text_shop_page', 25 );
//create our function
function wcs_stock_text_shop_page() {
    //returns an array with 2 items availability and class for CSS
    global $product;
    $availability = $product->get_availability();
    //check if availability in the array = string 'Out of Stock'
    //if so display on page.//if you want to display the 'in stock' messages as well just leave out this, == 'Out of stock'
    if ( $availability['availability'] == 'Out of stock') {
        echo apply_filters( 'woocommerce_stock_html', '<p class="stock ' . esc_attr( $availability['class'] ) . '">' . esc_html( $availability['availability'] ) . '</p>', $availability['availability'] );
    }
 
}
  

Кто-нибудь знает, как я мог бы отредактировать приведенный выше код, чтобы исключить продукты с метой _ywpo_preorder , пожалуйста?

Ответ №1:

Вы можете проверить эти метаданные в таблице postmeta с идентификатором продукта, и если он существует, вы завершаете функцию.

 <?php
    //add action give it the name of our function to run
    add_action( 'woocommerce_after_shop_loop_item_title', 'wcs_stock_text_shop_page', 25 );
    //create our function
    function wcs_stock_text_shop_page() {
        //returns an array with 2 items availability and class for CSS
        global $product;

        $meta = get_post_meta($product->get_ID(), '_ywpo_preorder', true);
        if($meta)
        {
            return;
        }

        $availability = $product->get_availability();
        //check if availability in the array = string 'Out of Stock'
        //if so display on page.//if you want to display the 'in stock' messages as well just leave out this, == 'Out of stock'
        if ( $availability['availability'] == 'Out of stock') {
            echo apply_filters( 'woocommerce_stock_html', '<p class="stock ' . esc_attr( $availability['class'] ) . '">' . esc_html( $availability['availability'] ) . '</p>', $availability['availability'] );
        }
     
    }