Skip to content

Instantly share code, notes, and snippets.

View iagdotme's full-sized avatar

Ian Anderson Gray iagdotme

View GitHub Profile
@iagdotme
iagdotme / modify-wp-admin-footer.php
Last active December 22, 2015 05:08
Modify Footer in WordPress Admin area
@iagdotme
iagdotme / disable-admin-bar.php
Last active December 22, 2015 05:08
Disable WP Admin Bar
<?php
/* Disable the Admin Bar. */
// From: http://yoast.com/disable-wp-admin-bar/
add_filter( 'show_admin_bar', '__return_false' );
function sp_hide_admin_bar_settings()
{
?><style type="text/css">.show-admin-bar {display: none;}</style><?php
}