汇集软件下载,免费分享活动线报
广告招商

WordPress调用最新随机热门特定类目代码收集

金腾网小编 0

WordPress调用最新文章、指定分类文章、随机文章、热门文章等代码收集。在Wordpress 5.3.2版本中测试成功过。

调用最新文章

显示6篇文章,除去类目-111

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

调用指定分类文章

比如:调用类目1中的前10篇文章

<ul>
$args=array(
'cat' => 1, // 分类ID
'posts_per_page' => 10, // 显示篇数
);
query_posts($args);
if(have_posts()) : while (have_posts()) : the_post();
?>
</ul>

调用整站随机文章

随机调用5篇文章

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

调用同分类随机文章

<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="https://meiwencun.com/wordpress_diao_yong_zui_xin_sui_ji_199/<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile;?>
<?php wp_reset_query(); ?>
</ul>

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

<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="https://meiwencun.com/wordpress_diao_yong_zui_xin_sui_ji_199/<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php } wp_reset_query();?>
</ul>

标签:

暂无标签

免责声明:

本站提供的资源,都来自网络,版权争议与本站无关,所有内容及软件的文章仅限用于学习和研究目的。不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负,我们不保证内容的长久可用性,通过使用本站内容随之而来的风险与本站无关,您必须在下载后的24个小时之内,从您的电脑/手机中彻底删除上述内容。如果您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务。侵删请致信E-mail: 34585055@qq.com

同类推荐
评论列表
签到