BP_Admin_Tab::bp_custom_do_settings_fields( string $page, string $section )

Print out the settings fields for a particular settings section

Description

Part of the Settings API. Use this in a settings page to output a specific section. Should normally be called by do_settings_sections() rather than directly.

Parameters

$page

(Required) Slug title of the admin page who's settings fields you want to show.

$section

(Required) Slug title of the settings section who's fields you want to show.

Source

File: bp-core/classes/class-bp-admin-tab.php

500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
public function bp_custom_do_settings_fields($page, $section) {
    global $wp_settings_fields;
 
    if ( ! isset( $wp_settings_fields[$page][$section] ) )
        return;
 
    foreach ( (array) $wp_settings_fields[$page][$section] as $field ) {
        $class = '';
 
        if ( ! empty( $field['args']['class'] ) ) {
            $class = ' class="' . esc_attr( $field['args']['class'] ) . '"';
        }
 
        echo "<tr{$class}>";
 
        if ( ! empty( $field['args']['label_for'] ) ) {
            echo '<th scope="row"><label for="' . esc_attr( $field['args']['label_for'] ) . '">' . $field['title'] . '</label></th>';
        } else {
            echo '<th scope="row">' . $field['title'] . '</th>';
        }
 
        echo '<td>';
        call_user_func($field['callback'], $field['args']);
        echo '</td>';
        echo '</tr>';
    }
}

Changelog

Changelog
Version Description
BuddyBoss 1.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.