Попробуйте этот пример кода, это должно начать вас!?
function theme_remove_editor_styles() {
// Get the global var
global $editor_styles;
// Get the item you want to move
$entry_to_move = $editor_styles[4];
// Remove a specific entry
unset($editor_styles[4]);
// Add the entry back to the beginning of the array
array_unshift($editor_styles, $entry_to_move);
}
add_action('pre_get_posts', 'theme_remove_editor_styles', 100);