• Hi everyone!

    I am wondering if anybody knows of a way using a function to replace the WordPress logo with a different image in the top left of the 5.4 full screen block editor?

    I have the usual toolbar sorted with just CSS but this one is an actual inline SVG.

    Any help much appreciated. Thank you in advance!

    • This topic was modified 4 years, 11 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Developing with WordPress topic
Viewing 2 replies - 1 through 2 (of 2 total)
  • @adamgreenough

    I thin you can do this by injecting the following CSS into the admin header.

    .edit-post-fullscreen-mode-close.has-icon {
    display: none !important;
    }

    I did this

    add_action('admin_head', 'remove_wplogo');
    
    function remove_wplogo() {                                                                                                                                                                                                               .edit-post-fullscreen-mode-close.has-icon {
            display: none !important;
            }
    }

    but it doesn’t seem to work.
    Am I doing something wrong?

    • This reply was modified 4 years, 10 months ago by laiconsulting.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Replace WordPress logo in top left of full screen block editor’ is closed to new replies.