Skip to content

Instantly share code, notes, and snippets.

@kirasiris
Created October 12, 2017 09:24
Show Gist options
  • Save kirasiris/2bd121a3fdef25a2db53c0cef9816354 to your computer and use it in GitHub Desktop.
Save kirasiris/2bd121a3fdef25a2db53c0cef9816354 to your computer and use it in GitHub Desktop.
<?php
// Agrega un logo personalizado al Dashboard de Wordpress
function wpb_custom_logo() {
echo '
<style type="text/css">
#wpadminbar #wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
background-image: url(' . get_bloginfo('stylesheet_directory') . '/img/your-logo.png) !important;
background-position: 0 0;
color:rgba(0, 0, 0, 0);
}
#wpadminbar #wp-admin-bar-wp-logo.hover > .ab-item .ab-icon {
background-position: 0 0;
}
</style>
';
}
add_action('wp_before_admin_bar_render', 'wpb_custom_logo');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment