電視劇帝王051  

【劇名】電視劇帝王

【韓文劇名】드라마의제왕

【英文劇名】The King of Dramas

【首播日期】2012年11月5日

【導演】洪成昌

【編劇】張衡俊

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

要在主頁上只顯示文章標題,可將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等其它範本來顯示單篇文章,那麼以上改動不會影響單篇文章頁面。


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

找到版型  /wp-content/themes/simplemarket/style.css位置

依自己喜好修改顏色、大小 
font-family:'Droid Sans',arial,serif;font-size:11px;line-height:22px;color:#333333;}


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