WordPress 程序是一个比较高效的网站制作程序,在学员学习如何做网站的时候,可以使用 wp 程序作为自己的首选建站程序,只要熟练的运用它的网站代码就可以制作出自己需要的网站来。

下面是学做网站提供关于 WordPress 程序调用最新文章、热门文章、相关文章、随机文章代码,供广大学做网站学员共享。

WordPress 最新文章代码:

<?php $rand_posts = get_posts(‘numberposts=5&category=1&orderby=date’);foreach($rand_posts as $post) : ?>
<li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li>
<?php endforeach;?>

WordPress 最新文章代码:

<?php $rand_posts = get_posts(‘numberposts=10&orderby=date’);foreach($rand_posts as $post) : ?>
<li><a href=”<?php the_permalink(); ?>”> <?php echo mb_strimwidth(get_the_title(), 0, 32, ”); ?></a></li>
<?php endforeach;?>

numberposts=10 最新 10篇文章
orderby=date 按日期调用

WordPress 相关文章代码:

<?php
$cats = wp_get_post_categories($post->ID);
if ($cats) {
$args = array(
        ‘category__in’ => array( $cats[0] ),
        ‘post__not_in’ => array( $post->ID ),
        ‘showposts’ => 6,
        ‘caller_get_posts’ => 1
    );
query_posts($args);
if (have_posts()) :
    while (have_posts()) : the_post(); update_post_caches($posts); ?>
<li><a href=”<?php the_permalink(); ?>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php the_title(); ?></a></li>
<?php endwhile; else : ?>
<li> 暂无相关文章</li>
<?php endif; wp_reset_query(); } ?>
WordPress 随机文章代码:

<?php $rand_posts = get_posts(‘numberposts=10& category=1&orderby=rand’);foreach($rand_posts as $post) : ?>
<li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li>
<?php endforeach;?>

numberposts=10 最新 10篇文章
orderby=date 按日期调用
category=1 只调用某个分类目录下的文章