Hello!
Rather than hard coding the </div> <!-- #wrapper --> in footer.php, I want to use the thematic_close_wrapper. Apparently I'm still struggling with how to apply_filters, as I've read the documentation, and still don't seem to be getting the result I want.
On a positive note, I did manage to get the wrapper closing </div> where I wanted it. Here's what I'm working on:
function close_wrapper_in_thematic_abovefooter() {
echo '</div><!-- #wrapper .hfeed -->';
}
add_filter('thematic_abovefooter', 'close_wrapper_in_thematic_abovefooter');
function set_close_wrapper_to_false() {
echo apply_filters('thematic_close_wrapper', false);
}
add_action('thematic_belowfooter','set_close_wrapper_to_false');
OK, as you can see, I put the apply_filter into that function, as the if statement checking if thematic_close_wrapper is true or false is in the footer.php outside of any hooks or anything, and I can't figure out how else to filter it.