WPIntell

Source evidence

Exrepts

Posts Viewed Recently · support · 2015-03-25T23:52:00+00:00

mixedsentiment
mediumseverity
0.78relevance
4replies
Evidence onlycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

1 / 1 rows with source links

100.0% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

0 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
deels resolved
Hi, 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!

Comments

4 shown
Amit Sonkhiya 2015-03-27T06:14:00+00:00

Hey, Currently not, you have to modify plugin file for that.

deels 2015-03-27T15:10:00+00:00

Thanks for your reply. where should I paste <?php the_excerpt(); ?> in the code? Thanks

Amit Sonkhiya 2015-03-28T07:11:00+00:00

<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.

deels 2015-03-30T15:29:00+00:00

Thanks MUCH!