- 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.ケアの問題の両方にかかる。

































