Changeset 12008 for trunk/src/bp-templates/bp-nouveau/includes/classes.php
- Timestamp:
- 04/28/2018 01:32:52 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/includes/classes.php
r11900 r12008 224 224 } 225 225 226 /** 227 * Filters the nav widget args for the BP_Nouveau_Object_Nav_Widget widget. 228 * 229 * @since 3.0.0 230 * 231 * @param array $value Array of arguments { 232 * @param bool $bp_nouveau_widget_title Whether or not to assign a title for the widget. 233 * } 234 */ 226 235 $item_nav_args = wp_parse_args( $instance, apply_filters( 'bp_nouveau_object_nav_widget_args', array( 227 236 'bp_nouveau_widget_title' => true, … … 242 251 } 243 252 253 /** 254 * Filters the BP_Nouveau_Object_Nav_Widget widget title. 255 * 256 * @since 3.0.0 257 * 258 * @param string $title The widget title. 259 * @param array $instance The settings for the particular instance of the widget. 260 * @param string $id_base Root ID for all widgets of this type. 261 */ 244 262 $title = apply_filters( 'widget_title', $title, $instance, $this->id_base ); 245 263
Note: See TracChangeset
for help on using the changeset viewer.