最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

WordPress無(wú)插件調(diào)用最新、熱門、隨機(jī)文章實(shí)例代碼

  發(fā)布時(shí)間:2013-06-05 16:50:08   作者:佚名   我要評(píng)論
WordPress無(wú)插件調(diào)用最新、熱門、隨機(jī)文章,具體實(shí)現(xiàn)代碼如下,感興趣的朋友可以參考下哈,希望對(duì)大家在新聞?wù){(diào)用上有所幫助
調(diào)用最新文章:

復(fù)制代碼
代碼如下:

<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>

調(diào)用熱門文章:

復(fù)制代碼
代碼如下:

<ul>
<?php
$post_num = 10; // 設(shè)置調(diào)用條數(shù)
$args = array(
‘post_password’ => ”,
‘post_status’ => ‘publish’, // 只選公開(kāi)的文章.
‘post__not_in’ => array($post->ID),//排除當(dāng)前文章
‘caller_get_posts’ => 1, // 排除置頂文章.
‘orderby’ => ‘comment_count’, // 依評(píng)論數(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ī)文章:

復(fù)制代碼
代碼如下:

<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>

相關(guān)文章

最新評(píng)論

武邑县| 永清县| 崇阳县| 宜州市| 上杭县| 兴城市| 林甸县| 哈尔滨市| 汝城县| 鄂伦春自治旗| 临桂县| 阜阳市| 调兵山市| 平塘县| 高陵县| 康保县| 兴业县| 禄丰县| 会同县| 建宁县| 增城市| 松江区| 乾安县| 古浪县| 博兴县| 普陀区| 普安县| 东乡| 凤庆县| 四川省| 长阳| 嘉善县| 环江| 武义县| 昭平县| 许昌县| 朝阳区| 廊坊市| 安国市| 会宁县| 台州市|