What lies behind us and what lies before us are tiny matters compared to what lies within us.
/ Functions to echo the necessary code add_action('wp_footer', 'ald_spa_display'); function ald_spa_display($force = false) { $spa_settings = spa_read_options(); if ($force || $spa_settings['footer']) { echo ald_spa(); } } // Add an action called echo_spa so that it can be called using do_action('echo_spa'); add_action('echo_spa', 'echo_spa_function'); function echo_spa_function() { $spa_settings = spa_read_options(); if (!$spa_settings['footer']) { ald_spa_display(true); } }>