Changeset 995198
- Timestamp:
- 09/23/2014 06:34:50 AM (12 years ago)
- Location:
- recent-posts-by-category-widget/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
recent-posts-by-category-widget.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
recent-posts-by-category-widget/trunk/readme.txt
r865844 r995198 3 3 Tags: widget, category, categories, recent posts, sidebar 4 4 Requires at least: 3.0.1 5 Tested up to: 3.8.15 Tested up to: 4.0 6 6 Stable tag: trunk 7 7 License: GPLv2 or later … … 19 19 2. Activate the plugin through the 'Plugins' menu in WordPress 20 20 3. Navigate to the 'Widgets' page found under the 'Appearance' menu item 21 4. Drag the 'Recent Posts by Category' widgetto the target widget area and choose your options21 4. Drag 'Recent Posts by Category Widget' to the target widget area and choose your options 22 22 23 23 == Screenshots == … … 27 27 == Changelog == 28 28 29 = 1.1 = 30 * Better use of 'widget_title' filter to allow hooks to be used on it. 31 29 32 = 1.0 = 30 33 * Initial release. -
recent-posts-by-category-widget/trunk/recent-posts-by-category-widget.php
r865839 r995198 4 4 Plugin Name: Recent Posts by Category Widget 5 5 Description: Just like the default Recent Posts widget except you can choose a category to pull posts from. 6 Version: 1. 06 Version: 1.1 7 7 Author: Ross Cornell 8 8 Author URI: http://www.rosscornell.com … … 112 112 echo $before_widget; 113 113 114 $title = apply_filters( 'widget_title', $instance['title']);114 $title = $title = apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base ); 115 115 $category = $instance['category']; 116 116 $number = $instance['number'];
Note: See TracChangeset
for help on using the changeset viewer.