How to Add a Plugins Link to the WordP...
Easily add a direct link to the WordPress plugins page in your admin bar for quick ac...

WPCodeBox
533
This WordPress snippet effectively hides the WordPress admin menu, allowing WPCodeBox to expand and utilize the full width of your screen, enhancing your code editing experience.
<?php
add_action('admin_head', function(){
if( isset( $_GET['page'] ) && $_GET['page'] === 'wpcb_menu_page_php' ) {
echo <<<EOD
<style type="text/css">
#adminmenuback {
margin-left: -160px !important;
}
#wpcontent {
margin-left: 0px !important;
}
#adminmenu {
display: none;
}
</style>
EOD;
}
});





