Plugin info

Total downloads: 13,362
Active installs: 90
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 3
Last updated: 11/18/2010 (5518 days ago)
Added to WordPress: 7/26/2010 (15 years old)
Minimum WordPress version: 2.8
Tested up to WordPress version: 3.0.5
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 5518 days ago

20/100

Is Select Featured Posts abandoned?

Possibly abandoned (last update 5518 days ago).

Compatibility

Requires WordPress: 2.8
Tested up to: 3.0.5
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

NS Featured Posts
Rating 4.8/5 (28 reviews)Active installs 4,000
Featured Post
Rating 4.6/5 (14 reviews)Active installs 1,000
Featured Posts Grid
Rating 4.5/5 (10 reviews)Active installs 100
Featured Posts Scroll
Rating 5.0/5 (1 reviews)Active installs 50
Feature A Page Widget
Rating 5.0/5 (29 reviews)Active installs 4,000
Genesis Featured Widget Amplified
Rating 4.9/5 (15 reviews)Active installs 3,000

Description

This allows you to mark the selected post as featured post and hence enables editors, publishers, bloggers etc to feature relavent content on the site.

In most content publishing scenarios, where there are a large set of contributors, certain posts require to be featured in relevant content sections of your WP site, so that they draw the maximim attention span from the readers. This Plugin allows the editors or administrators to mark a set of posts as featured posts. Then using a simple functional call in your theme, you can dynamically display the featured posts. if you want to place it separatly.

Select Featured Posts plugin is also available as a widget.

We would be keen you hear your feedback and requests for any enhancements. Please send your feedback to [email protected].

Installation

  1. Upload the select-featured-posts folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Go to the Posts -> Posts screen if you have wordpress 3.0 and for older versions go to Posts -> Edit.
  4. Check and uncheck posts to make it featured/unfeatured
  5. To use it in theme add this before query_posts or get_posts

    if (function_exists(‘featured_posts’)) {
    featured_posts(‘add’);
    }

    If query_posts or get_posts is not there in your theme then you can add above code and query_posts before while loop
    For eg.

  if (function_exists('featured_posts')) {
    featured_posts('add');
  }
  query_posts('posts_per_page=10');
    while ( have_posts() ) : the_post();
    //Your Code
  endwhile; // end of the loop.
  if (function_exists('featured_posts')) {
    featured_posts('remove');
  }
  
  1. To remove the featured post from the query post buffer once the same have been displayed add this code

    if (function_exists(‘featured_posts’)) {
    featured_posts(‘remove’);
    }

For eg.

  if (function_exists('featured_posts')) {
      featured_posts('add');
    }
    query_posts('category_name=Entertainment');
    // Hence now that the featured posts have been displayed clear them so that they don't get repeated.
    if (function_exists('featured_posts')) {
      featured_posts('remove');
    }

So it will give featured post of Entertainment Category.

OR

  1. If you want to get Featured post IDs only then use this

    if (function_exists(‘get_featured_posts’)) {
    $limit = 5;
    $featured_posts = get_featured_posts($limit);
    }

  2. If your theme supports widgets then go to Appearance -> Widgets and just Drag and Drop Select Featured Post Widget.

  3. In widget you can specify total no of posts or Featured Post of a Category.

Frequently Asked Questions

Please send us your questions to [email protected]. We will feature the frequently asked questions and answers here.

Review feed

No reviews available

Screenshots

  1. Select Featured post checkbox in the Admin panel

    Select Featured post checkbox in the Admin panel

  2. Widget Display.

    Widget Display.

Changelog

0.2

  • Removed Notices and updated documentation

0.1

  • Initial release