我想显示基于“自定义订单”字段的订单列表。 另外,我希望能够通过使用短代码将此列表添加到前端。
我试图将一些不同的代码放在一起,但实际上我不知道自己在做什么。任何帮助将不胜感激。
add_shortcode('your-shortcode', 'yourFunction');
function yourFunction(){
$args = array(
$custom_field = get_post_meta( $order_id, 'Value Customfield', true );
$orders = wc_get_orders( $args );
}