• Hi guys,

    I wonder if anyone can help, or if there’s even a solution to this one?

    In the normal (classic) editor, running down the page there is an area for editing the post itself, then something like Yoast, then something like a table of contents, then the except etc etc, which can all be rearranged to suit your own taste.

    If you’re anything like me, and need to regularly edit one or more of these fields in every post on the website, it becomes rather annoying to have to scroll down through the blog post, and only then be able to edit the fields.

    Is there a way to either click onto the blog post itself to minimse all of the content, or to move the fields below the blog post to above the blog post?

    Thanks for any info!

Viewing 1 replies (of 1 total)
  • Thread Starter deeveearr

    (@deeveearr)

    Got it!

    Just drop this into Code Snippets and it disables the distraction free editor:

    add_filter( ‘wp_editor_settings’, function($settings) {
    $settings[‘teeny’]=true;
    $settings[‘media_buttons’]=false;
    $settings[‘quicktags’] = false;
    $settings[‘dfw’] = false;
    return $settings;
    });

Viewing 1 replies (of 1 total)
  • The topic ‘Blog Editing – Classic Editor’ is closed to new replies.