fields-default.php
7 years ago
link-checking.php
3 years ago
link-rules.php
3 years ago
support.php
1 year ago
fields-default.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Tab Default Content |
| 4 | * |
| 5 | * @package WPEL |
| 6 | * @category WordPress Plugin |
| 7 | * @version 2.3 |
| 8 | * @link https://www.webfactoryltd.com/ |
| 9 | * @license Dual licensed under the MIT and GPLv2+ licenses |
| 10 | * |
| 11 | * @var array $vars |
| 12 | * @option array "tabs" |
| 13 | * @option string "current_tab" |
| 14 | */ |
| 15 | |
| 16 | $current_tab = $vars [ 'current_tab' ]; |
| 17 | $tab_values = $vars[ 'tabs' ][ $current_tab ]; |
| 18 | $fields = $tab_values[ 'fields' ]; |
| 19 | |
| 20 | settings_fields( $fields->get_setting( 'option_group' ) ); |
| 21 | do_settings_sections( $fields->get_setting( 'page_id' ) ); |
| 22 |