Solution to replace WordPress logo on your full screen site editor/page editor
-
I managed to add this code to my website to replace the WordPress logo on my full screen site editor:
1. Download Code Snippets
2. Activate
3. Add New
Add Codeadd_action( 'admin_head', function () { ?> <style> /*Replace Logo on admin bar*/ #wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before { color: transparent ; background: url(<your picture url>) no-repeat 0 0 / 100% auto !important; } .edit-post-fullscreen-mode-close.has-icon svg { display: none !important; } /*Replace Logo in Site Editor*/ .edit-post-fullscreen-mode-close.has-icon { color: transparent ; background: url(<your picture url>) no-repeat 50% 50% / 100% auto !important; } </style> <?php } );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Solution to replace WordPress logo on your full screen site editor/page editor’ is closed to new replies.