Archive for the 'WordPress' Category


Pages: 1 2 3

WordPress 2.0.5 Released

WordPress 2.0.5 - Ronan,Ronan 為慶祝其中一位開發者 Ryan Boren 新誕生兒子而取的名字。

Changelog,共有 54 個檔案更動,其中 1 個檔案為新增。[download]

升級至 WordPress 2.0.4

WordPress 2.0.4

共 74 個檔案更動、6 個檔案新增,包含不少安全性的修正,因此官方建議更新。

左下角的 Previous Posts,是用 get_posts 得到的小型文章 loop。
1. 基本的用法:
<?php
$posts = get_posts('numberposts=5&offset=3&category=1');
foreach($posts as $post) :
?>
   <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
/* numberposts= 指定文章數量; offset= 顯示第 n 篇後的文章; category= 指定分類 (0=不指定) */
則會顯示分類 ID=1 之中,去掉最新 3 篇文章之後的 5 篇文章標題連結;
若要加入文章的日期跟留言,則在 <?php the_title(); ?> 與 </a> 之間加入:
<?php the_time('F jS, Y'); ?> <?php comments_number('| No comments yet','| Comments (1)','| Comments […]


Pages: 1 2 3


About

You are currently browsing the hsuyo BLOG 2.0 weblog archives for the 'WordPress' category.

Longer entries are truncated. Click the headline of an entry to read it in its entirety.