Sorry if this question has already been answered, but my search foo is weak this evening.
I've added a leader board to my child theme via functions.php...
// Add leader board
function childtheme_leaderboard() {
?>
<div id="leader">Leader board content</div>
<?php
}
add_action('thematic_belowheader','childtheme_leaderboard');
I only want this leader board to appear on my home page (static). What code do I need to add to filter this function?
Thanks, folks.
Kevin