久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

WordPress調(diào)用最新、熱門,、隨機(jī)文章

 ME書籍?dāng)?shù)據(jù)庫 2017-08-24

Exo me,?看到標(biāo)題是不是被嚇了一跳呢?由于最近重裝了系統(tǒng),,有一些保存在C盤的文檔忘記備份了,,其中就有關(guān)于WordPress調(diào)用最新、熱門,、隨機(jī)文章的示例,,因此還是記錄在博客上比較重要,不僅可以隨時(shí)隨地拿出來看看,,還能順路嘮嗑幾句,。

5943cfbe4a4bc.jpg

最近包攬了兩個(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>

    本站是提供個(gè)人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn),。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多