Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter meadwench

    (@meadwench)

    Ha! Figured it out. I just added code to the template output file to show it, and voila, there it is!!

    Plugin Author Eric Amundson

    (@sewmyheadon)

    Hi meadwench,

    Great name! ??

    Great question too and one you apparently figured out on your own.

    You got the answer; you can modify the template file to change the output as you see fit.

    By default, it uses the_excerpt() but you can tweak it as you see fit.

    One note: if you tweak the template file within the plugin, you’ll want to copy, or move, the altered template file to your theme directory so it’s not overwritten when the plugin is updated.

    Hope that helps.

    Eric

    Thread Starter meadwench

    (@meadwench)

    Yep, followed your instructions in the main page and did that. Thanks again!

    Plugin Author Eric Amundson

    (@sewmyheadon)

    Quite welcome. ?? Have a great week!

    Can someone provide a step-by-step for this process, please?

    I’d appreciate a step-by-step as well!

    Martin Schreader and Imenara

    as said above (if you tweak the template file within the plugin, you’ll want to copy, or move, the altered template file to your theme directory so it’s not overwritten when the plugin is updated.)

    and add this `<a href=”<?php the_permalink(); ?>”?>Read more..</a>’ to the EXCERPT like below.

    <!-- This is the output of the EXCERPT -->
    	<div class="entry-summary">
    		<div class="featured-image">
    			<?php the_post_thumbnail( array(180,9999), array('class' => 'alignleft')); ?>
    		</div>
    		<?php the_excerpt(); ?>
    		<a href="<?php the_permalink(); ?>"?>Read more..</a>
    	</div>

    yours might be slightly different to mine as iv been editing mine. but it should work the same

    Plugin Author Eric Amundson

    (@sewmyheadon)

    Thanks sam!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘[Plugin: Posts in Page] Put in a 'Read more….' link?’ is closed to new replies.