gpt4 book ai didi

php - 使用 WP 查询循环 WooCommerce 产品的元值

转载 作者:行者123 更新时间:2023-12-04 09:08:02 34 4
gpt4 key购买 nike

我在 WooCommerce API 中工作,我想创建一个新端点,其中列出了我的特定产品。我们已经使用插件创建了以前的新字段,我想检查它们。如果在设置中勾选了该属性,则显示它,否则不显示。
产品的新属性(高级设置中的复选框):

woocommerce_wp_checkbox(
array(
'id' => '_checkbox_badge_hot',
'desc' => __('set the checkbox', 'woocommerce'),
'label' => __('Hot', 'woocommerce'),
'desc_tip' => 'true',
'value' => get_post_meta( $post->ID, '_checkbox_badge_hot', true )
)
);
应该列出产品的代码(现在,如果我尝试向端点发出请求,它只会继续加载):
function get_hot_products(){
$args_for_hot_product = array(
'post_type' => 'product',
'posts_per_page' => -1
);
$loop = new WP_Query( $args_for_hot_product );
$hotproducts = [];

while ( $loop->have_posts() ) : $loop->the_post();
wc_get_template_part( 'content', 'product' );
endwhile;

while ( $loop->have_posts() ): $loop->the_post(){
$hot = $loop->get_meta('_checkbox_badge_hot');
if( $hot === "yes" ){
array_push($hotproducts, $hot);
}
}
//wp_reset_postdata();
return $hotproducts;
}

add_action( 'rest_api_init', function () {
register_rest_route( '/wc/v3', '/featuredproducts', array(
'methods' => 'GET',
'callback' => 'get_hot_products',
) );
} );
谢谢你们的帮助!

最佳答案

要获取并显示具有特定自定义字段值的所有产品,请使用 WP_Query ,您只需按如下方式使用 eta 查询:

function display_hot_products(){
$loop = new WP_Query( array(
'post_type' => 'product',
'post_status' => 'publish',
'posts_per_page' => -1,
'meta_query' => array( array(
'key' => '_checkbox_badge_hot',
'value' => 'yes',
'compare' => '=',
)),
));

if ( $loop->have_posts() ) :
while ( $loop->have_posts() ) : $loop->the_post();

the_title(); // Display product title

endwhile;
wp_reset_postdata();
endif;
}
使用 WP_Query 时不要忘记这一点你得到 WC_Post对象而不是 WC_Product对象。

关于php - 使用 WP 查询循环 WooCommerce 产品的元值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63409536/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com