Changeset 34553
- Timestamp:
- 09/25/2015 07:23:18 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-text.php
r34552 r34553 24 24 25 25 /** 26 * @param array $args 27 * @param array $instance 26 * Outputs the Text widget content. 27 * 28 * @since 2.8.0 29 * @access public 30 * 31 * @param array $args Display arguments including 'before_title', 'after_title', 32 * 'before_widget', and 'after_widget'. 33 * @param array $instance The settings for the particular instance of the widget. 28 34 */ 29 35 public function widget( $args, $instance ) { 36 30 37 /** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */ 31 38 $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base );
Note: See TracChangeset
for help on using the changeset viewer.