I need to only display the 3 leader asides (and a custom function) on the front_page.
I used Widget Logic, but it only removes the widgets, not the leader div and its borders.
So I tried to place if is_front_page() on several spots in my functions.php, but somehow I have not find the right location. Someone has a map for me? ;)
This is the custom function (you know the asides code I guess)
// Adds the Partner div above the footer
function childtheme_partnerlinks() { ?>
<div id="partner">
<div id="partnerinfo">
...Bla...Bla...Bla...
</div>
</div>
<?php }
add_action('thematic_abovefooter','childtheme_partnerlinks');