WordPress 3.3 WP Logo aus der neuen Toolbar entfernen
In der functions.php:
function adminbar_render() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wp-logo');
}
add_action( 'wp_before_admin_bar_render', 'adminbar_render' );
In der functions.php:
function adminbar_render() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wp-logo');
}
add_action( 'wp_before_admin_bar_render', 'adminbar_render' );
Einzufügen in der functions.php
// Eigenes Logo im WP Backend
add_action('admin_head', 'custom_logo');
function custom_logo() {
echo '
<style type="text/css">
#header-logo { background-image: url('.get_bloginfo('template_directory').'/images/logo.gif) !important; }
</style>
';
}