Hi, all! I am trying to use this same method to insert some linked images using HTML in the header where the tagline typically goes. I want to use the tagline to render the HTML but it gets stripped. I found the code to do this,
echo html_entity_decode(get_bloginfo('description'))
but they all reference the header.php file, which of course has no bearing when using Customizr 3.0.10. This thread helped immensely.
So, I assume I want to modify the line (185)
apply_filters( 'tc_tagline_text ', __( esc_attr( get_bloginfo( 'description' ) ) ) )
in class-main-header.php and let’s just say I wanted a single linked image, which I’d set in the tagline in admin. What would my resulting code look like, if I wanted to use
echo html_entity_decode(get_bloginfo('description'))
instead?
Or, maybe I just replace some portion of this line in class_main_header.php with my HTML? Thanks in advance!