首頁 > CMS教程 > &#&按 > WordPress如何無外掛呼叫最新、熱門、隨機文章

WordPress如何無外掛呼叫最新、熱門、隨機文章

藏色散人
發布: 2020-01-11 09:36:35
原創
2587 人瀏覽過

WordPress如何無外掛呼叫最新、熱門、隨機文章

WordPress如何無外掛呼叫最新、熱門、隨機文章?

WordPress無外掛呼叫最新、熱門、隨機文章實例程式碼

推薦:《wordpress教學

WordPress無插件調用最新、熱門、隨機文章,具體實現代碼如下,有興趣的朋友可以參考下哈,希望對大家在新聞調用上有所幫助

  

調用最新文章: 

程式碼如下:

<ul> 
<?php $post_query = new WP_Query(‘showposts=10′); 
while ($post_query->have_posts()) : $post_query->the_post(); 
$do_not_duplicate = $post->ID; ?> 
<li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li> 
<?php endwhile;?> 
</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(); ?>” title=”<?php the_title(); ?>”><?php the_title(); ?></a></li> 
<?php } wp_reset_query();?> 
</ul>
登入後複製

呼叫隨機文章: 

#程式碼如下:

<ul> 
<?php 
global $post; 
$postid = $post->ID; 
$args = array( ‘orderby’ => ‘rand’, ‘post__not_in’ => array($post->ID), ‘showposts’ => 10); 
$query_posts = new WP_Query(); 
$query_posts->query($args); 
?> 
<?php while ($query_posts->have_posts()) : $query_posts->the_post(); ?> 
<li><a href=”<?php the_permalink(); ?>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php the_title(); ?></a></li> 
<?php endwhile; ?> 
</ul>
登入後複製

以上是WordPress如何無外掛呼叫最新、熱門、隨機文章的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板