Conversation
supportHi, Is it possible to load also the excerpt of the post? Thanks https://wordpress.org/plugins/posts-viewed-recently/
Hey, Currently not, you have to modify plugin file for that.
Thanks for your reply. where should I paste <?php the_excerpt(); ?> in the code? Thanks
<div class="recentviewed_right"> <a href="<?php echo get_permalink( $ft_post->ID ) ; ?>"> <?php echo apply_filters( 'the_title', $ft_post->post_title, $ft_post->ID ); ?> </a> <?php if ( $show_date ) : ?> <br /><span class="post-date"><small><?php echo date(get_option('date_format'),strtotime($ft_post->post_date)); ?></small></span> <?php endif; ?> <?php echo $ft_post->post_excerpt; ?> </div> between lines 217-218. check the second last line.
Thanks MUCH!
Hey, Currently not, you have to modify plugin file for that.
Thanks for your reply. where should I paste <?php the_excerpt(); ?> in the code? Thanks
<div class="recentviewed_right"> <a href="<?php echo get_permalink( $ft_post->ID ) ; ?>"> <?php echo apply_filters( 'the_title', $ft_post->post_title, $ft_post->ID ); ?> </a> <?php if ( $show_date ) : ?> <br /><span class="post-date"><small><?php echo date(get_option('date_format'),strtotime($ft_post->post_date)); ?></small></span> <?php endif; ?> <?php echo $ft_post->post_excerpt; ?> </div> between lines 217-218. check the second last line.
Thanks MUCH!