WPIntell

Source evidence

Show post Excerpt text

Nelio Featured Posts · support · 2015-07-02T06:48:00+00:00

questionsentiment
lowseverity
0.63relevance
1replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

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

4 / 27 rows with source links

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

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

23 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
rarcher30 resolved
Hi there, Just want to know if there is any way that I can show some excerpt text from the blog posts underneath the hyperlinked titles when they are listed in the widget. Is this done though a template? Sorry but I don’t know much about the template system. Thanks! https://wordpress.org/plugins/nelio-featured-posts/ You simply need to create a directory named neliofp in your theme and add a file there with the template for printing featured posts. For instance, posts-with-excerpt.php with the following contents (more or less): <?php global $post; ?> <article class="post-<?php echo $post->ID; ?> post type-post status-publish entry" itemscope="itemscope"> <?php // Add image... ?> <h2 class="entry-title"><?php // Print the title here... ?></h2> <p><?php // Print the excerpt here... ?></p> </article> This is only a small example. If you look in our plugin’s source code, you’ll see a folder named template-examples . There you can take a look at the example named title-and-featured-image.php and add the excerpt at the end (adding the <p>...</p> tag right before closing the article tag). I hope this helps!

Comments

1 shown
David Aguilera 2015-07-02T07:16:00+00:00

You simply need to create a directory named neliofp in your theme and add a file there with the template for printing featured posts. For instance, posts-with-excerpt.php with the following contents (more or less): <?php global $post; ?> <article class="post-<?php echo $post->ID; ?> post type-post status-publish entry" itemscope="itemscope"> <?php // Add image... ?> <h2 class="entry-title"><?php // Print the title here... ?></h2> <p><?php // Print the excerpt here... ?></p> </article> This is only a small example. If you look in our plugin’s source code, you’ll see a folder named template-examples . There you can take a look at the example named title-and-featured-image.php and add the excerpt at the end (adding the <p>...</p> tag right before closing the article tag). I hope this helps!