标签: php wordpress
我使用以下代码显示帖子。
This is the output
$args = array( 'posts_per_page' => -1, 'post_type' => 'products', 'post_status' => 'publish', 'post_parent' => 0, 'orderby' => 'menu_order', 'order' => 'ASC', ); $the_query = new WP_Query($args);