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 $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 只呼叫某個分類目錄下的文章