下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。内存溢出小编现在分享给大家,也给大家做个参考。
wordpress 如何不使用插件实现调用最新文章、热门文章和随机文章呢,关于 WP 文章调用方法,包括调用最新,指定分类,随机,热文等代码,经测试,支持最新版 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>
调用指定分类文章
<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>
调用整站随机文章
<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>
调用同分类随机文章
<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>
调用整站热门文章(按评论数)
<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>
以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
总结以上是内存溢出为你收集整理的WordPress调用最新,随机,热门,指定分类文章全部内容,希望文章能够帮你解决WordPress调用最新,随机,热门,指定分类文章所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)