I'm trying to wrap the subsidiary aside with a div with this function:
// Subsidiary Asides Wrapper
function subasides_start() { ?>
<div id="subasides-wrapper">
<?php }
add_action ('thematic_abovesubasides','subasides_start');
function subasides_end() { ?>
</div><!-- #subasides-wrapper -->
<?php }
add_action ('thematic_belowsubasides','subasides_end');
What am I missing? I cant hook anything in thematic_abovesubasides or thematic_belowsubasides.
Thanx in advance!