Remove "read the rest of this entry" in post
-
How can I remove “read the rest of this entry” from my posts? I want to show the full posts. Please give me a step by step as I’m a newbie and not a techie.
Below is what showing in function.php. THANKS!
}
function art_get_post_content() {
global $post;
ob_start();
if(is_single() || is_page()) {
echo art_get_the_content(__(‘Read the rest of this entry »’, THEME_NS));
wp_link_pages(array(‘before’ => ‘<p>Pages: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’));
} else {
echo art_get_the_excerpt(__(‘Read the rest of this entry »’, THEME_NS),
get_permalink($post->ID),
art_option(‘metadata.excerpt_words’),
art_option(‘metadata.excerpt_use_tag_filter’) ? explode(‘,’,art_option(‘metadata.excerpt_allowed_tags’)) : null,
art_option(‘metadata.excerpt_min_remainder’),
art_option(‘metadata.excerpt_auto’));
}
return ob_get_clean();
}
- The topic ‘Remove "read the rest of this entry" in post’ is closed to new replies.