• Hi, I read a lot about this and everybody say that I need to replace the_except for the_content but I have a real problem because the_excepts is not in any of my files, and then I read that it is in content.php and this is what I found:

    <div class="loop-entry-content entry clr">
    	<?php if ( get_theme_mod( 'wpex_entry_content_excerpt','excerpt' ) == 'content' ) {
    		the_content();
    			} else {
    				$wpex_readmore = get_theme_mod('wpex_blog_readmore','1') == '1' ? true : false;
    				wpex_excerpt( 93, $wpex_readmore );
    			} ?>
    </div><!-- .loop-entry-content -->

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    I don’t know what I should replace.. Any idea?
    I will appreciated!

    thanks..

Viewing 1 replies (of 1 total)
  • If what you want is to show the content all the time, you can use this:

    <div class="loop-entry-content entry clr">
        <?php the_content(); ?>
    </div><!-- .loop-entry-content -->

    That will make sure that there’s no other choices no matter what.

Viewing 1 replies (of 1 total)
  • The topic ‘Full post in home page’ is closed to new replies.