Description
Determines whether or not to execute thesis_footer_area (when the Page Framework is enabled) or thesis_wrap_footer (when the Full-Width Framework is enabled).
Must return either true or false with every iteration (the default is true).
Example
function no_footer() {
if (is_home())
return false;
else
return true;
}
add_filter('thesis_show_footer', 'no_footer');
History
- This filter was added in version 1.8.