无法在此Wordpress主题中编辑“阅读更多”选项

时间:2013-01-17 17:59:33

标签: html css wordpress

我有这个主题,当我想使用“插入更多标签”添加“阅读更多”选项时,主题会在下面添加一个阅读更多图标。我想做的事情:删除“阅读更多”图标并在文本末尾显示“阅读更多”(不在文本下方 - 这很重要)。请查看下面的视觉说明。

提前感谢您的帮助。我真的很感激。

(p.s。我很少知道如何编辑html文件,如果没有的话)

视觉教学 - > http://bit.ly/V8fU8k

主题 - > http://bit.ly/13I3x7U

2 个答案:

答案 0 :(得分: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>

答案 1 :(得分: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.