Scriptease - Codesnippets

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' );
Hinzugefügt von Pixelaner in Wordpress | Keine Kommentare
Tags: , , ,

Eigenes WordPress Backend Logo

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>
';
}
Hinzugefügt von Pixelaner in Wordpress | Keine Kommentare
Tags: , ,