上次的Comment 分頁功能教學完了之後呢,這次要來讓你的留言可以更加的不同,page-comments這個plugin裡面還有可以讓你雙數留言跟單數留言的方式呈現不一樣,現在我們來看看如何設定。 首先,打開放在theme裡面的這個檔案,comments-paged.php,打開後請尋找下面的代碼。 <?php /* Changes every other comment to a different class */if (‘alt’ == $oddcomment) $oddcomment = ";else $oddcomment = ‘alt’;?> 這邊的alt,是內定的css代碼,所以等等要來定義 alt ,在來 $oddcomment = ‘ ‘; 這個地方改成你要的 css 代碼 如下 <?php /* Changes every other comment to a different class */if (‘alt’ == $oddcomment) $oddcomment = ‘page-comment’;else $oddcomment = ‘alt’;?> 我先預設 [...]