WordPress调用标签功能代码大全

关于WP文章调用方法,包括调用最新,指定分类,随机,热文等代码,经测试,支持最新版Wordpress。

最新,随机,热门,指定分类代码汇总,修改主题调用更多方便。

WordPress配图

调用最新文章

<?php query_posts('showposts=6&cat=-111'); ?>  // 显示篇数和排除分类
<ul>  
<?php while (have_posts()) : the_post(); ?>  
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>  
<?php endwhile;?>  
</ul>  

2调用指定分类文章

<ul>
<?php
$args=array(
'cat' => 1, // 分类ID
'posts_per_page' => 10, // 显示篇数
);
query_posts($args);
if(have_posts()) : while (have_posts()) : the_post();
?>
<li>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</li>
<?php endwhile; endif; wp_reset_query(); ?>
</ul>

 

3调用整站随机文章

<ul>
<?php
$args = array( 'numberposts' => 5, 'orderby' => 'rand', 'post_status' => 'publish' );
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>

 

4调用同分类随机文章

<ul>
<?php
$cat = get_the_category();
foreach($cat as $key=>$category){
$catid = $category->term_id;}
$args = array('orderby' => 'rand','showposts' => 8,'cat' => $catid ); // 显示篇数
$query_posts = new WP_Query();
$query_posts->query($args);
while ($query_posts->have_posts()) : $query_posts->the_post();?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
<?php wp_reset_query(); ?>
</ul>

 

5调用整站热门文章(按评论数)

<ul>
<?php
$post_num = 10; // 显示篇数
$args = array(
‘post_password’ => ”,
‘post_status’ => ‘publish’, // 只选公开的文章.
‘post__not_in’ => array($post->ID),//排除当前文章
‘caller_get_posts’ => 1, // 排除置顶文章.
‘orderby’ => ‘comment_count’, // 依评论数排序.
‘posts_per_page’ => $post_num
);
$query_posts = new WP_Query();
$query_posts->query($args);
while( $query_posts->have_posts() ) { $query_posts->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php } wp_reset_query();?>
</ul>
1. 本站所有资源来源于用户上传和互联网收集整理,如有侵权请联系站长!
2. 分享目的仅供大家学习和交流,请不要用于商业用途!同时支持正版!
3. 本站提供的源码、模板、插件、站长资源教程等等其他资源,都不包含技术服务请大家谅解!
4. 如有链接无法下载、失效、过期,请联系管理员处理!
5. 本站资源售价只是赞助,收取费用仅维持本站的日常运营服务所需!
6. 本站虚拟商品使用过程中请遵循本站资源使用说明,切勿用于非法用途,侵权诉删。

无忧数字商城 » WordPress调用标签功能代码大全

发表评论

提供最优质的网站模板资源和互联网福利资料集合

开通会员 积分充值