调用wordpress随机文章有挺多好处,不仅增强用户粘性,而且当蜘蛛来爬你的文章的时候每次都会有变化,搜索引擎很喜欢。下面就是简站wordpress小编为大家收集整理自网络上常见的5种调用方法。

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

第一种,在需要的地方直接添加上面的代码就可以实现。

<?php
query_posts(array('orderby' => 'rand', 'showposts' => 2));
if (have_posts()) :
    while (have_posts()) : the_post();?>
        <a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>
    <?php endwhile; ?>
<?php endif; ?>

或下面这种也可以

<?php
query_posts(array('orderby' => 'rand', 'showposts' => 1));
if (have_posts()) :
while (have_posts()) : the_post();
the_title(); 
the_excerpt(); 
endwhile;
endif; ?>

第二种,通过query_posts生成随机文章列表。

<?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(); ?>

第三种,调用相同分类目录下的随机文章。

<?php
$args = array(
                        'post_type' => 'post',
                        'showposts' => 4,
                        'orderby' => 'rand',
                        'cat' => 8,//分类ID
                    );
                    $my_query = new WP_Query($args);
                    if( $my_query->have_posts() ) {
                        while ($my_query->have_posts()) : $my_query->the_post(); ?>
                            <div class="item">
                                <a href="<?php the_permalink(); ?>" class="box">
                                    <?php the_post_thumbnail( array(800,600) ); ?>
                                    <div class="text">
                                        <strong><?php the_title();?></strong>
                                    </div>
                                </a>
                            </div>
                        <?php endwhile; wp_reset_query(); } ?>

第四种,通过wp_query函数来实现。

function random_posts($posts_num=5,$before='<li>',$after='</li>'){
    global $wpdb;
    $sql = "SELECT ID, post_title,guid
            FROM $wpdb->posts
            WHERE post_status = 'publish' ";
    $sql .= "AND post_title != '' ";
    $sql .= "AND post_password ='' ";
    $sql .= "AND post_type = 'post' ";
    $sql .= "ORDER BY RAND() LIMIT 0 , $posts_num ";
    $randposts = $wpdb->get_results($sql);
    $output = '';
    foreach ($randposts as $randpost) {
        $post_title = stripslashes($randpost->post_title);
        $permalink = get_permalink($randpost->ID);
        $output .= $before.'<a href="'
            . $permalink . '"  rel="bookmark" title="';
        $output .= $post_title . '">' . $post_title . '</a>';
        $output .= $after;
    }
    echo $output;
}

第五种,通过主题function定义,向主题的functions.php文件添加上面的代码,在需要调用的位置添加以下代码就可以实现。

<div class="">
    <h3>调用随机文章</h3>
    <ul>
        <?php random_posts(); ?>
    </ul>
</div><!-- 随机文章 -->