Tagged Questions
0
votes
1answer
67 views
how can I list recent posts' excerpts
I am using this directly from the codex to list 3 recent articles titles.
<ul>
<?php
$args = array( 'numberposts' => '3');
$recent_posts = wp_get_recent_posts( $args );
foreach( ...
0
votes
1answer
381 views
Calling the_excerpt from inside a plugin template file
Im trying to use the_excerpt form inside a plugins template file, plugin is wp-favorite-posts by default the plugin only lists and displays the saved post title, i have manged to get it to show ...