0

このテーマがあり、「タグを挿入」を使用して「続きを読む」オプションを追加したい場合、テーマは下に続きを読むアイコンを追加します。私がしたいこと:「続きを読む」アイコンを削除し、テキストの最後に「続きを読む」を表示します(テキストの下ではありません-これは重要です)。以下の視覚的な指示を確認してください。

助けてくれてありがとう。本当にありがたいです。

(ps私はhtmlファイルを編集する方法をほとんど知らないが、まったく知らない)

視覚的な指示-> http://bit.ly/V8fU8k

テーマ-> http://bit.ly/13I3x7U

4

2 に答える 2

0
Please replace in loop.php file in your theme

<?php if (option::get('display_content') == 'Full Content') {  echo get_the_content(''); } else { echo get_the_excerpt(); } ?>

to 

<?php if (option::get('display_content') == 'Full Content') {  echo get_the_content(''); } else { echo get_the_excerpt(); } ?>
<a href="<?php the_permalink() ?>"><?php _e('Read more'); ?></a>

This will help you to put read more near end of the post.
于 2013-01-18T16:45:16.237 に答える
0
    you can change the Read More option in loop.php file in your theme folder

    Remove this code

    <?php if (option::get('display_readmore') == 'on') { ?><span class="readmore"><a href="<?php the_permalink() ?>"><?php _e('Read more', 'wpzoom'); ?></a></span><?php } ?>

   find

   <?php if (option::get('display_content') == 'Full Content') {  the_content(''); } else { the_excerpt(); } ?>

and add code after this

<a href="<?php the_permalink() ?>"><?php _e('Read more', 'wpzoom'); ?></a>
于 2013-01-17T19:16:48.963 に答える