我需要从以下字符串中检索日期子字符串:
DEV_ACID_C179456_2016-11-05_0009_Build
答案 0 :(得分:1)
快速上线:
$args = array( 'post_type' => 'product', 'post_status' => 'publish',
'posts_per_page' => -1 );
$products = new WP_Query( $args );
echo $products->found_posts;
但您需要进行研究并分享您的代码。