Hi, where is the place to define or change alt tag for header logo? By default there is just "logo"
Thanks
Hi, where is the place to define or change alt tag for header logo? By default there is just "logo"
Thanks
in the headerFeatures function in theme-functions.php (in the library/finctions folder).
Thanks. Here's what I added for everyone's reference:
src="<?php getLogoURL(); ?>" alt="<?php bloginfo('name'); ?>" title="<?php bloginfo('name'); ?>"
There is no way to override theme-functions.php with child-functions? Then custom logo alt could be considered as feature request for future releases :) Or at least changing default alt to blog name could be really simple but useful update.
there is a way to override functions, just copy the function into the childtheme functions.php and rename it, then add this code:
add_action( 'bf_header', 'myHeaderFeatures );
add_action( 'wp_head', 'remove_actions' );
function remove_actions() {
remove_action( 'bf_header', 'headerFeatures' );
}
You must log in to post.