>
Download This Plugin | |
Download Elegant Themes | |
Name | Favorite Plugins Widget |
Version | 1.1 |
Author | Chris Olbekson |
Rating | 0 |
Last updated | 2012-10-12 06:30:00 |
Downloads |
542
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
Favorite Plugins Widget plugin added 477 bytes of resources to the Home page and 481 bytes of resources to the sample Post page.
Favorite Plugins Widget plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! Favorite Plugins Widget plugin ads no tables to your Wordpress blog database.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.
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: