0
任何人都知道我可以如何使用wordpress中的自定義文章類型進行數字分頁?分頁數字自定義文章類型wordpress
$posts_per_page = 10;
$post_type = 'products'
$args = array('post_type'=> $post_type, 'posts_per_page' => $posts_per_page, 'paged' => get_query_var('paged'));
query_posts($args);