Plugin Directory

Changeset 1379963


Ignore:
Timestamp:
03/27/2016 08:33:09 PM (10 years ago)
Author:
dbmartin
Message:

updated acw_form_field_$name filter in Widget_ACW_Recent_Comments::form()

Location:
advanced-comments-widget
Files:
17 added
3 edited

Legend:

Unmodified
Added
Removed
  • advanced-comments-widget/trunk/advanced-comments-widget.php

    r1379053 r1379963  
    66 *
    77 * @license     http://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
    8  * @version     1.1
     8 * @version     1.1.1
    99 *
    1010 * Plugin Name: Advanced Comments Widget
    1111 * Plugin URI:  http://darrinb.com/plugins/advanced-comments-widget
    1212 * Description: A highly customizable recent comments widget.
    13  * Version:     1.1
     13 * Version:     1.1.1
    1414 * Author:      Darrin Boutote
    1515 * Author URI:  http://darrinb.com
  • advanced-comments-widget/trunk/inc/class-widget-acw-recent-comments.php

    r1379053 r1379963  
    2323 * Core class used to implement a Recent Comments widget.
    2424 *
     25 * @version 1.1.1 Updated "acw_form_field_{$name}" filter
    2526 * @version 1.1 Added support for Selective Refresh
    2627 * @version 1.0 Initial version
     
    269270            do_action( "acw_form_before_field_{$name}", $instance, $this );
    270271
    271             echo apply_filters( "acw_form_field_{$name}", $field ) . "\n";
     272            echo apply_filters( "acw_form_field_{$name}", $field, $instance, $this ) . "\n";
    272273
    273274            do_action( "acw_form_after_field_{$name}", $instance, $this );
  • advanced-comments-widget/trunk/readme.txt

    r1379054 r1379963  
    44Requires at least: 4.4
    55Tested up to: 4.5
    6 Stable tag: 1.1
     6Stable tag: 1.1.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2626* Select the comment list format to match your site's markup.  Choose from: `ol`, `ul`, or `div`.
    2727* Select the comment format. Choose between `html5` or `xhtml`.
     28* Create multiple comment lists with different settings.
    2829
    2930__Developer Features__
     
    7273== Changelog ==
    7374
     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
    7480= 1.1 =
    75 * Added support for Selective Refresh for the Customizer
     81* Added support for Selective Refresh for the Customizer for WP 4.5
    7682
    7783= 1.0 =
Note: See TracChangeset for help on using the changeset viewer.