Exo me,?看到標(biāo)題是不是被嚇了一跳呢?由于最近重裝了系統(tǒng),,有一些保存在C盤的文檔忘記備份了,,其中就有關(guān)于WordPress調(diào)用最新、熱門,、隨機(jī)文章的示例,,因此還是記錄在博客上比較重要,不僅可以隨時(shí)隨地拿出來看看,,還能順路嘮嗑幾句,。
最近包攬了兩個(gè)外包項(xiàng)目,還在努力中,,博客似乎真的有一段時(shí)間沒更新了呢,,不說了獻(xiàn)上干貨(筆記)吧,。 調(diào)用最新文章: <?PHP query_posts(‘showposts=14′); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a title=”<?php the_title(); ?>” href=”<?php the_permalink() ?>”><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
調(diào)用熱門文章: <ul>
<?php
$post_num = 14; // 設(shè)置調(diào)用條數(shù)
$args = array(
‘post_password’ => ”,
‘post_status’ => ‘publish’, // 只選公開的文章.
‘post__not_in’ => array($post->ID),//排除當(dāng)前文章
‘caller_get_posts’ => 1, // 排除置頂文章.
‘orderby’ => ‘comment_count’, // 依評論數(shù)排序.
‘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>
調(diào)用隨機(jī)文章: <ul>
<?php
global $post;
$postid = $post->ID;
$args = array( ‘orderby’ => ‘rand’, ‘post__not_in’ => array($post->ID), ‘showposts’ => 14);
$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(); ?>” title=”<?php the_title_attribute(); ?>”><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
|