一直希望分類烈表示如同無名一樣可以僅列出標題和日期,
而不希望是wordpress的原始設定,會連同文章內文一起列出來。
算算時間,陸續找修改方法也將近2,3年了,
直到昨天才發現好的方法修改。
修改原文在此。
以HoPE這個佈景為例,
開啟archive.php
尋找
1 | <h1>Posts under ‘<?php single_cat_title(); ?>’</h1> |
改成(不改也可以,只是把 Posts under改成中文字而已,也可以改成你想要的)
1 | <h1>分類列表於 ‘<?php single_cat_title(); ?>’</h1> |
尋找
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <div id="post-<?php the_ID(); ?>"> <span><abbr title="<?php the_time('Y-m-d\TH:i:sO'); ?>"><?php the_time('M d'); ?></abbr></span> <h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permalink to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <div> <!--<address><?php _e('by '); ?><a href="<?php the_author_url(); ?>"><?php the_author(); ?></a>. </address>--> <?php comments_popup_link('No comments yet', '1 comment', '% comments', 'comments-link', 'Comments are off for this post'); ?> <?php edit_post_link('Edit', '[', ']'); ?> </div> <div> <?php the_excerpt(); ?> </div> </div><!--.entry--> |
取代為
1 2 3 4 5 | <li> <div id="post-<?php the_ID(); ?>"> <font class="entry-content"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permalink a <?php the_title_attribute(); ?>"><?php the_title(); ?></a></font><font size="9pt">(<?php comments_popup_link('0 回應', '1 回應', '% 回應'); ?>)<?php edit_post_link('Edit', '[', ']'); ?>|Post on <?php the_time('Y-d-m') ?></font> </div> </li> |
即可。