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 回答