Hide 'read more' link in posts, how?
-
Hello to all,
i am trying to hide read more link, as i am not going to use it.Is there any way to do it?
I have read http://codex.ww.wp.xz.cn/Customizing_the_Read_More
and didn’t find the answer.Is there any way to do it?
Address of my site: http://www.uaifrs.com/
Thanks in advance!
-
i have tried this
http://www.techiecorner.com/1131/how-to-remove-more-tag-in-wordpress/
and this
http://www.wprecipes.com/how-to-remove-the-read-more-jump
still no use 🙁
found a solution and it works ok
in loop.php removed this line
<span class=”read-more”>#more-<?php the_ID(); ?>”>Read More</span>
weird.
Not sure what theme you have, but rather than editing
loop.php, consider creating a child theme and adding this to the newstyle.cssfile:.read-more { display: none; }I’m working with a child theme of BizPro. I wold like to romove the Read More button.
I tried to create a functions.php file on the child theme and to put:function wdc_no_more_jumping($post) {
return ‘ID).'” class=”read-more”>’.’Continue Reading’.’‘;
}
add_filter(‘excerpt_more’, ‘wdc_no_more_jumping’);but it dind`t work.
I also tried the suggestion of Jan, but still no working.
Any other suggestion in order to remove read more button?
Thanks
Hey,
I have the same problem, I could not find how to hide that link (read more).
Does anyone know any more ways to do it? Any other suggestions?
I would be really thankfull
I tried also:
function no_more_jumping($post) {
return ‘ID).'” class=”read-more”>’.’Continue Reading’.’‘;
}
add_filter(‘excerpt_more’, ‘no_more_jumping’);
add_filter(‘the_content_more_link’, ‘remove_more_jump_link’);Always in my functions.php child file, and it didn’t work!
The topic ‘Hide 'read more' link in posts, how?’ is closed to new replies.