要在主頁上只顯示文章標題,可將wp-content/themes/default/index.php文件中的:

<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small> <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> 

<?php the_content('Read the rest of this entry »'); ?> 

替換成:

<?php if (is_single()) { the_content('Read the rest of this entry »'); } else {//no content, nothing. } ?> 

這樣文章內容只會顯示在單篇文章頁面而不顯示在主頁上了。注意:如果主題使用single.php等其它範本來顯示單篇文章,那麼以上改動不會影響單篇文章頁面。

arrow
arrow
    全站熱搜

    minisix 發表在 痞客邦 留言(0) 人氣()