This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

Favorite Plugins Widget

Description

A lot of people write plugins and even more people have a hard time finding good plugins. If you write plugins I’m sure you are always being asked for recommendations.
This simple plugin allows you to show off the plugins you have favorited on your WordPress.org plugin author profile in a sidebar widget.

Your users and site visitors will know what plugins you like. You can also display the plugins star rating along with the author with link to the author uri.

The styling is minimal and easily adapts to your theme design with few hooks added for extension if needed.

Now includes option to shuffle results. Only want to show 4 of your favorites but you have more? Just choose the shuffle option and the results will be randomized on each page load (Does not decrease performance).

How does it work?

Just in time for WordPress 3.5 a new addition was made to the WordPress.org plugins api. The api allows you to fetch your favorites as an object. The plugin stores the resulting object as a transient so your not hammering the api on every page load.
Any of the object vars can be added to the output of the widget using the c3m_favorite_results filter.

This is the same api used in the new favorites tab in the dashboard for 3.5.

How to filter the output

To add additonal CSS:

function my_star_css( $css ) {
    $css =. '.c3m-favorites li {
             padding: 10px 4px 0;
             background: pink;
             color: purple;
            }';
    return $css;
}

You can also remove it entirely by passing __return_false to the filter:

Screenshots

  • The Widget ops
  • The Widget on a sidebar

Installation

  • Activate
  • go to appearance -> widgets
  • drag Favorite Plugins widget to sidebar of choice
  • enter wordpress.org username
  • profit

Reviews

There are no reviews for this plugin.

Contributors & Developers

“Favorite Plugins Widget” is open source software. The following people have contributed to this plugin.

Contributors

Changelog

1.1

  • Added randomize option based on user feedback.
  • Added additional margins to the li tag
  • Added additional output filters for css and display.
  • Fixed bug to better handle error when api unavailable or no connection.
  • Doesn’t store the error as a transient