Hi, I am using the Flexx Professional theme and I would like to remove the "Read More" link so that the entire blog post is displayed, including the archive. Any suggestions?
Thanks in advance!
Hi, I am using the Flexx Professional theme and I would like to remove the "Read More" link so that the entire blog post is displayed, including the archive. Any suggestions?
Thanks in advance!
http://codex.wordpress.org/Template_Tags/the_content#Overriding_Archive.2FSingle_Page_Behavior
if you need to display all of the content:
<?php
global $more; // Declare global $more (before the loop).
$more = 1; // Set (inside the loop) to display all content, including text below more.
the_content();
?>
Related:
Stepping Into Template Tags
Stepping Into Templates
Template Hierarchy
This topic has been closed to new replies.