Yet Another Featured Posts Plugin (YAFPP)
Yet Another Featured Posts Plugin provides an easy AJAX interface to feature posts, with thumbnails & other display options for featured posts.
Next Milestone 200
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| starred | 16 | — | Tag | 15 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- trunk
- Last Updated
- Apr 23, 2010
- Requires WP
- 2.8.4+
- Tested Up To
- 2.9
- PHP Version
- N/A
- Author
- Jon Raasch
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Yet Another Featured Posts Plugin (YAFPP)
Or pull a list of only featured pages:
<?php get_featured_posts( array('post_type' => 'page') ); ?>
'id' => '', // id of the post
'title' => '', // title of the post
'excerpt' => '', // excerpt of the post
'url' => '', // the post permalink
'image' => '', // an array of data for a YAPB image, if it exists
'author' => '', // the post's author
); ?>
How do I use the `the_loop` output method?
When using the_loop output method, YAFPP alters the next instance of The_Loop to contain only the featured posts. To call these featured posts, call The_Loop:
<?php
get_featured_posts(array('method' => 'the_loop'));
while (have_posts()) : the_post();
//whatever you want in here
endwhile;
?>
It should be noted that the original query is still preserved when using this method. Thus if you want to call the original query for a given page, just call The_Loop a second time:
<?php
get_featured_posts(array('method' => 'the_loop'));
while (have_posts()) : the_post();
//whatever you want to do with the featured posts
endwhile;
while (have_posts()) : the_post();
//whatever you want to do with the original loop
endwhile;
?>
For more answers to your YAFPP questions, please read the complete documentation