lemmygoestothepub
Member
Posted 3 months ago #
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.wordpress.org/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!
lemmygoestothepub
Member
Posted 3 months ago #
lemmygoestothepub
Member
Posted 3 months ago #
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 new style.css file:
.read-more {
display: none;
}