WordPress logo in admin-bar
-
I would like to change the wp-logo.png image in the admin-bar to the logo of the site I am building. I am a newbie, but am familiar with php and have access in cpanel to the folders and files for editing. I have found the function in wp-includes/admin-bar.php,
function wp_admin_bar_wp_menu( $wp_admin_bar ) {
$wp_admin_bar->add_menu( array(
‘id’ => ‘wp-logo’,
‘title’ => ‘<span class=”ab-icon”></span>’,
‘href’ => self_admin_url( ‘about.php’ ),
‘meta’ => array(
‘title’ => __(‘About WordPress’),
),
) ); etc, etc.
And, I know where the logo is located in the images folder, but I can’t figure out where the <img> tag is that calls for the logo image so that I can change the image to the company’s logo instead of the wp logo. Please help.
- The topic ‘WordPress logo in admin-bar’ is closed to new replies.