外贸独立站
-
wordpress获取分类下文章列表四种方法
1、使用query_posts()函数以下代码实际上使用query_posts()函数调取分类目录下的文章,showposts是调取的数量。 <?php $cats = get_categories(); foreach ( $cats as $cat ) { query_posts( ‘showposts=10&cat=’ . $cat-&g…
1、使用query_posts()函数以下代码实际上使用query_posts()函数调取分类目录下的文章,showposts是调取的数量。 <?php $cats = get_categories(); foreach ( $cats as $cat ) { query_posts( ‘showposts=10&cat=’ . $cat-&g…