Home › Forums › Pro Version › Small Preview Text with Pinterest version › Reply To: Small Preview Text with Pinterest version
March 18, 2015 at 3:11 am
#4419
Keymaster
Hi Spyros,
Please use this <?php the_excerpt(); ?>
below <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
Final result will be like this.
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<p><?php the_excerpt(); ?></p>
// Kept p tags here for spacing only. You can choose your own elements for styling.