Created
June 29, 2018 10:18
-
-
Save rushijagani/dd3d6cf8e11e4ab8aaf19096ff5c5b57 to your computer and use it in GitHub Desktop.
Display some text when hovered over logo with Astra
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add Custom Text with Logo. | |
add_filter( 'get_custom_logo', 'add_title_markup_with_logo' ); | |
function add_title_markup_with_logo( $output ){ | |
$output .= '<div class="logo-hover-overlay">'; | |
$output .= '<div class="site-title-custom-text">Your Custom Text</div>'; | |
$output .= '</div>'; | |
return $output; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add following CSS to Display some text when hovered over logo with Astra