Remove Continue reading text…
-
Hi all…I’m making a WP website, and want the blog page to be a series of announcements – showing only the title that links to a page with the full announcement. If I use the MORE button, it has extra space after the post title, and then says “continue reading….” I found where to remove that in the functions.php page, although I’m not quite sure what all to remove as I don’t want the space there either.
function theme_get_content($args = array()) { $more_tag = theme_get_array_value($args, 'more_tag', __('Continue reading <span class="meta-nav">→</span>', THEME_NS)); theme_ob_start(); the_content($more_tag); $content = theme_ob_get_clean(); return $content . wp_link_pages(array( 'before' => '<p><span class="page-navi-outer page-navi-caption"><span class="page-navi-inner">' . __('Pages', THEME_NS) . ': </span></span>', 'after' => '</p>', 'link_before' => '<span class="page-navi-outer"><span class="page-navi-inner">', 'link_after' => '</span></span>', 'echo' => 0 ));
Or is there an easier way to show all the post titles on the blog page and have them link to that particular post?
thanks, hopefully it isn’t too confusing of a question
carrie
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Remove Continue reading text…’ is closed to new replies.