I would like to add a link to an external website plus a logo to the footer, no matter what the final user enters in the theme options for the footer.
Which is the best way to do it?
For the time being I tweaked
footer-extensions.php
and I added the markup to the
$thm_footertext
variable before calling
echo do_shortcode(whatever)
I do not want to mess up the parent files though...
I tried to create my own
function childtheme_override_siteinfo();
in my child theme but in that case nothing is shown any more...probably is that
add_action('thematic_footer', 'thematic_siteinfo', 30);
which is not nested properly...it seems to me it is executed only if there is not any override function...or am I missing something?