Hi!
I am using Suffusion theme (3.7.3) and would love to get intelligent sorting, when using WP-Tables.
According to your tech note, these functions won't work if footer.php doesn't include <?php wp_footer(); ?>, then it can't work
The footer.php for Suffusion doesn't include it: I include the code... can I include this function, without screwing up other functionality.
I would be grateful for guidance.
Thanks
Peter
<?php
/**
* Footer template, invoked when get_footer() is called
*
* @package Suffusion
* @subpackage Templates
*/
global $suffusion_unified_options;
foreach ($suffusion_unified_options as $id => $value) {
$$id = $value;
}
// Invoke hook - this creates the bottom widget area, the right sidebars etc.
suffusion_before_end_container();
?>
</div><!-- /container -->
<?php
if ($suf_footer_layout_style == 'in-align') {
suffusion_page_footer();
}
?>
</div><!--/wrapper -->
<?php
if ($suf_footer_layout_style != 'in-align') {
suffusion_page_footer();
}
?>
<?php
suffusion_document_footer();
wp_footer(); ?>
</body>
</html>
<?php
if ($suf_site_gzip_enabled == 'gzip') {
ob_end_flush();
}
?>