When listing the posts by categories, how can I change the symbol “[…]” and make it a link to the Permanent link of the post similar to the main index page?在列出的職位分類,我怎樣才能改變符號" [ … … ] " ,並使其成為一個連接到永久聯繫的,郵政相類似,主要索引頁?
Open theloop.php (using Presentation/Theme Editor) and look for:開放theloop.php (使用演示/主題編者) ,並期待為:

 <?php if (is_archive() or is_search()) {       the_excerpt();      } else {       the_content("Continue reading '" . the_title('', '', false) . "'");      } ?> < ? PHP的,如果( is_archive ( )或is_search ( ) ) ( the_excerpt ( ) ; )否則( the_content ( "繼續閱讀' " 。 the_title ( '' , '' ,虛假) 。 "'"); ) ? > 

Change it to:改變它:

 <?php if (is_search()) {       the_excerpt();      } else {       the_content("Continue reading '" . the_title('', '', false) . "'");      } ?> < ? PHP的,如果( is_search ( ) ) ( the_excerpt ( ) ; )否則( the_content ( "繼續閱讀' " 。 the_title ( '' , '' ,虛假) 。 "'"); ) ? > 

If you want to change it to simply Read more >> then use:如果你想改變它簡單地查看更多> >然後使用:

 <?php if (is_search()) {       the_excerpt();      } else {       the_content("Read more >>");      } ?> < ? PHP的,如果( is_search ( ) ) ( the_excerpt ( ) ; )否則( the_content ( "閱讀更多>>"); ) ? > 

If you do not want this ([…]) even in search page then use this:如果你不想要這個( [ … … ] ) ,甚至在搜索頁面上,然後用這個:

 <?php the_content("Continue reading '" . the_title('', '', false) . "'"); ?> < ? PHP的the_content ( "繼續閱讀' " 。 the_title ( '' , '' ,虛假) 。 "'"); ? > 
When listing the posts by categories, the links doesn´t appear.在列出的職位分類,這些聯繫也不會出現。 Why the links are not activated ?為什麼聯繫不激活?
In categories and search view, by default, the excerpt is shown which doesn’t display the links.在分類和搜索來看,在默認情況下,節錄刊登,是顯示它不會顯示該鏈接。 Follows the steps above (question 1) to solve this.遵循以上步驟,問題( 1 ) ,以解決這一點。 It takes care of both the problems.它充分照顧到雙方的問題。