WordPress是一款能让您建立出色网站、博客或应用程序的开源软件。美观的设计,强大的功能,助您自由发挥心中所想。WordPress既是免费的,也是无价的。
不过对于没有代码开发的朋友来说,在用wordpress网站制作时可能会遇到一些问题,比如调用指定分类目录下的文章,今天就教大家一个方法怎样通过代码来调用wordpress指定分类目录下的文章,以便wordpress用户能更快上手使用wordpress。
我们在wordpress 主题开发时不管是哪个页面还是分类页,可以进行如下操作
<?php $posts = get_posts(array( 'numberposts' => '10', //输出的文章数量 'post_type' => 'product', //自定义文章类型名称 'tax_query'=>array( array( 'taxonomy'=>'products', //自定义分类法名称 'terms'=>'10' //id为64的分类。也可是多个分类array(12,64) ) ), ) ); ?> <?php if($posts): foreach($posts as $post): ?> <li><a href="<?php the_permalink(); ?>" target="_blank" title="<?php the_title();?>"><?php the_title();?></a></li> <?php wp_reset_postdata(); endforeach; endif;?>
这样我们就可以实现在你需要的地方调用wordpress的指定分类目录下的文章了。