299 | | $section = isset($_REQUEST['section']) ? wp_unslash( $_REQUEST['section'] ) : 'description'; //Default to the Description tab, Do not translate, API returns English. |
300 | | if ( empty($section) || ! isset($api->sections[ $section ]) ) |
301 | | $section = array_shift( $section_titles = array_keys((array)$api->sections) ); |
| 299 | $section = isset( $_REQUEST['section'] ) ? wp_unslash( $_REQUEST['section'] ) : 'description'; //Default to the Description tab, Do not translate, API returns English. |
| 300 | if ( empty( $section ) || ! isset( $api->sections[ $section ] ) ) { |
| 301 | $section_titles = array_keys( (array) $api->sections ); |
| 302 | $section = array_shift( $section_titles ); |
| 303 | } |