If you mean on the dashboard, then please add this filter function to your functions.php
:
/**
* This script will put the secondary title input field
* below the primary title in classic editors.
*
* @param array $default_options
*
* @return array
*/
function secondary_title_swap_input_location( array $default_options ) {
$default_options['secondary_title_input_field_position'] = "below";
return $default_options;
}
add_filter( 'secondary_title_get_default_settings', 'secondary_title_swap_input_location' );
If it doesn’t work right away, please head to the Secondary Title settings page and hit “Reset”.
And please let me know if it worked.
-
This reply was modified 3 years, 6 months ago by thaikolja.
-
This reply was modified 3 years, 6 months ago by thaikolja.
-
This reply was modified 3 years, 6 months ago by thaikolja.