Changeset 1379963
- Timestamp:
- 03/27/2016 08:33:09 PM (10 years ago)
- Location:
- advanced-comments-widget
- Files:
-
- 17 added
- 3 edited
-
tags/1.1.1 (added)
-
tags/1.1.1/README.md (added)
-
tags/1.1.1/advanced-comments-widget.php (added)
-
tags/1.1.1/assets (added)
-
tags/1.1.1/assets/banner-772x250.jpg (added)
-
tags/1.1.1/assets/icon-128x128.jpg (added)
-
tags/1.1.1/assets/screenshot-1.jpg (added)
-
tags/1.1.1/assets/screenshot-2.gif (added)
-
tags/1.1.1/assets/screenshot-3.jpg (added)
-
tags/1.1.1/assets/screenshot-4.jpg (added)
-
tags/1.1.1/inc (added)
-
tags/1.1.1/inc/class-acw-recent-comments-utilities.php (added)
-
tags/1.1.1/inc/class-acw-recent-comments.php (added)
-
tags/1.1.1/inc/class-widget-acw-recent-comments.php (added)
-
tags/1.1.1/js (added)
-
tags/1.1.1/js/admin.js (added)
-
tags/1.1.1/readme.txt (added)
-
trunk/advanced-comments-widget.php (modified) (1 diff)
-
trunk/inc/class-widget-acw-recent-comments.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
advanced-comments-widget/trunk/advanced-comments-widget.php
r1379053 r1379963 6 6 * 7 7 * @license http://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+ 8 * @version 1.1 8 * @version 1.1.1 9 9 * 10 10 * Plugin Name: Advanced Comments Widget 11 11 * Plugin URI: http://darrinb.com/plugins/advanced-comments-widget 12 12 * Description: A highly customizable recent comments widget. 13 * Version: 1.1 13 * Version: 1.1.1 14 14 * Author: Darrin Boutote 15 15 * Author URI: http://darrinb.com -
advanced-comments-widget/trunk/inc/class-widget-acw-recent-comments.php
r1379053 r1379963 23 23 * Core class used to implement a Recent Comments widget. 24 24 * 25 * @version 1.1.1 Updated "acw_form_field_{$name}" filter 25 26 * @version 1.1 Added support for Selective Refresh 26 27 * @version 1.0 Initial version … … 269 270 do_action( "acw_form_before_field_{$name}", $instance, $this ); 270 271 271 echo apply_filters( "acw_form_field_{$name}", $field ) . "\n";272 echo apply_filters( "acw_form_field_{$name}", $field, $instance, $this ) . "\n"; 272 273 273 274 do_action( "acw_form_after_field_{$name}", $instance, $this ); -
advanced-comments-widget/trunk/readme.txt
r1379054 r1379963 4 4 Requires at least: 4.4 5 5 Tested up to: 4.5 6 Stable tag: 1.1 6 Stable tag: 1.1.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 26 26 * Select the comment list format to match your site's markup. Choose from: `ol`, `ul`, or `div`. 27 27 * Select the comment format. Choose between `html5` or `xhtml`. 28 * Create multiple comment lists with different settings. 28 29 29 30 __Developer Features__ … … 72 73 == Changelog == 73 74 75 = 1.1.1 = 76 * added field reference to `"acw_form_field_{$name}"` filter 77 * added instance reference to `"acw_form_field_{$name}"` filter 78 * added widget reference to `"acw_form_field_{$name}"` filter 79 74 80 = 1.1 = 75 * Added support for Selective Refresh for the Customizer 81 * Added support for Selective Refresh for the Customizer for WP 4.5 76 82 77 83 = 1.0 =
Note: See TracChangeset
for help on using the changeset viewer.