| 1 |
<?php |
| 2 |
// Create a section. |
| 3 |
CSF::createSection( |
| 4 |
$prefix, |
| 5 |
[ |
| 6 |
'title' => __( 'Shortcodes', 'bbp-core' ), |
| 7 |
'fields' => [ |
| 8 |
[ |
| 9 |
'id' => 'bbpc_shortcode', |
| 10 |
'type' => 'text', |
| 11 |
'title' => esc_html__( 'My Profile URL', 'bbp-core' ), |
| 12 |
'subtitle' => esc_html__( 'Use this shortcode to get the user\'s own profile URL', 'bbp-core' ), |
| 13 |
'default' => '[bbpc_profile_link]', |
| 14 |
'attributes' => array( |
| 15 |
'readonly' => 'readonly', |
| 16 |
), |
| 17 |
'class' => 'st-pro-notice' |
| 18 |
] |
| 19 |
], |
| 20 |
] |
| 21 |
); |