Changeset 36709 for trunk/src/wp-includes/widgets.php
- Timestamp:
- 02/25/2016 12:52:33 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets.php
r36667 r36709 639 639 * Fires before widgets are rendered in a dynamic sidebar. 640 640 * 641 * Note: The action also fires for empty sidebars, and on both the front -end642 * and back -end, including the Inactive Widgets sidebar on the Widgets screen.641 * Note: The action also fires for empty sidebars, and on both the front end 642 * and back end, including the Inactive Widgets sidebar on the Widgets screen. 643 643 * 644 644 * @since 3.9.0 … … 675 675 * Filter the parameters passed to a widget's display callback. 676 676 * 677 * Note: The filter is evaluated on both the front -end and back-end,677 * Note: The filter is evaluated on both the front end and back end, 678 678 * including for the Inactive Widgets sidebar on the Widgets screen. 679 679 * … … 711 711 * Fires before a widget's display callback is called. 712 712 * 713 * Note: The action fires on both the front -end and back-end, including713 * Note: The action fires on both the front end and back end, including 714 714 * for widgets in the Inactive Widgets sidebar on the Widgets screen. 715 715 * … … 723 723 * @type string $name Name of the widget. 724 724 * @type string $id Widget ID. 725 * @type array|callable $callback When the hook is fired on the front -end, $callback is an array726 * containing the widget object. Fired on the back -end, $callback725 * @type array|callable $callback When the hook is fired on the front end, $callback is an array 726 * containing the widget object. Fired on the back end, $callback 727 727 * is 'wp_widget_control', see $_callback. 728 728 * @type array $params An associative array of multi-widget arguments. 729 729 * @type string $classname CSS class applied to the widget container. 730 730 * @type string $description The widget description. 731 * @type array $_callback When the hook is fired on the back -end, $_callback is populated731 * @type array $_callback When the hook is fired on the back end, $_callback is populated 732 732 * with an array containing the widget object, see $callback. 733 733 * } … … 744 744 * Fires after widgets are rendered in a dynamic sidebar. 745 745 * 746 * Note: The action also fires for empty sidebars, and on both the front -end747 * and back -end, including the Inactive Widgets sidebar on the Widgets screen.746 * Note: The action also fires for empty sidebars, and on both the front end 747 * and back end, including the Inactive Widgets sidebar on the Widgets screen. 748 748 * 749 749 * @since 3.9.0 … … 758 758 * Filter whether a sidebar has widgets. 759 759 * 760 * Note: The filter is also evaluated for empty sidebars, and on both the front -end761 * and back -end, including the Inactive Widgets sidebar on the Widgets screen.760 * Note: The filter is also evaluated for empty sidebars, and on both the front end 761 * and back end, including the Inactive Widgets sidebar on the Widgets screen. 762 762 * 763 763 * @since 3.9.0 … … 771 771 772 772 /** 773 * Whether widget is displayed on the front -end.773 * Whether widget is displayed on the front end. 774 774 * 775 775 * Either $callback or $id_base can be used
Note: See TracChangeset
for help on using the changeset viewer.