**Vlastní logo na nástěnce**
/—code php
// hook the administrative header output
add_action(‚admin_head‘, ‚my_custom_logo‘);
function my_custom_logo() {
echo ‚
‚;
}
\—
**Změna obsahu patičky**
/—code php
function change_footer_admin () {
echo ‚Pohání: WordPress | Vytvořeno: OVX.cz‚;
}
add_filter(‚admin_footer_text‘, ‚change_footer_admin‘);
\—
**Přidání vlastních odkazů**
/—code php
function mytheme_admin_bar_render() {
global $wp_admin_bar;
$wp_admin_bar->add_menu( array(
‚parent‘ => ‚new-content‘, // use ‚false‘ for a root menu, or pass the ID of the parent menu
‚id‘ => ‚new_media‘, // link ID, defaults to a sanitized title value
‚title‘ => __(‚Media‘), // link title
‚href‘ => admin_url( ‚media-new.php‘), // name of file
‚meta‘ => false // array of any of the following options: array( ‚html‘ => “, ‚class‘ => “, ‚onclick‘ => “, target => “, title => “ );
));
}
add_action( ‚wp_before_admin_bar_render‘, ‚mytheme_admin_bar_render‘ );
\—
„Různé úpravy administrační lišty »“:http://digwp.com/2011/04/admin-bar-tricks/