Используйте этот код в файле functions.php вашей активной дочерней темы
add_shortcode( 'out_of_stock_products', 'render_out_of_stock_products_shortcode' );
function render_out_of_stock_products_shortcode() {
$args = array(
'post_type' => 'product',
'posts_per_page' => -1,
'post_status' => 'publish',
'meta_query' => array(
array(
'key' => '_stock',
'value' => 1,
'compare' => '<'
)
),
'fields' => 'ids',
);
$product_ids = get_posts( $args );
$product_ids = implode( ",", $product_ids );
return do_shortcode("[products ids='$product_ids']");
}
Затем используйте шорткод [out_of_stock_products]
для любых страниц, сообщений, шаблонов или виджетов.