Remove "read more" and show the entire post
-
Hello everyone!
I’ve read something about the code for remove the “Read More” button, but still doesn’t resolve my problem.
I would like to show the entire post, without the “Read More” link.
I saw I’m able to remove the button, but still remain only 5 rows about my post.
How can I do for show the entire post?
I have the SUEVA theme and I’ve found something about “read more” in my main.php:/*-----------------------------------------------------------------------------------*/ /* Custom excerpt more */ /*-----------------------------------------------------------------------------------*/ function wip_new_excerpt_more( $more ) { global $post; return '<a class="button" href="'.get_permalink($post->ID).'" title="More"> ' . __( "Read More","wip") . ' </a>'; } add_filter('excerpt_more', 'wip_new_excerpt_more');
Instead in my index.php there’s nothing about that:
<?php get_header(); if ( (!wip_setting('wip_home')) || (wip_setting('wip_home') == "home-default") ) { get_template_part('home-default'); } else if (wip_setting('wip_home') == "home-blog") { get_template_part('home-blog'); } else { wip_masonry(wip_setting('wip_home')); } get_template_part('pagination'); get_footer(); ?>
Could you help me?
Thank you!Paola
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Remove "read more" and show the entire post’ is closed to new replies.