BP_Nouveau_Object_Nav_Widget::form( $instance )
Output the new support topic widget options form
Description
Parameters
- $instance
-
(Required) Instance
Return
(string) HTML Output
Source
File: bp-templates/bp-nouveau/includes/classes.php
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 | public function form( $instance ) { $defaults = array ( 'bp_nouveau_widget_title' => true, ); $instance = wp_parse_args( ( array ) $instance , $defaults ); $bp_nouveau_widget_title = (bool) $instance [ 'bp_nouveau_widget_title' ]; ?> <p> <input class = "checkbox" type= "checkbox" <?php checked( $bp_nouveau_widget_title , true ); ?> id= "<?php echo $this->get_field_id( 'bp_nouveau_widget_title' ); ?>" name= "<?php echo $this->get_field_name( 'bp_nouveau_widget_title' ); ?>" /> <label for = "<?php echo $this->get_field_id( 'bp_nouveau_widget_title' ); ?>" ><?php esc_html_e( 'Include navigation title' , 'buddyboss' ); ?></label> </p> <?php } |
Changelog
Version | Description |
---|---|
BuddyPress 3.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.