2017-09-12, 22:44:55
use Hooks.
http://get-simple.info/wiki/plugins:hooks_filters
The footer hook is called: theme-footer
Place the following code in the themes functions.php (create if not there) This will get loaded automatically.
http://get-simple.info/wiki/plugins:hooks_filters
The footer hook is called: theme-footer
Place the following code in the themes functions.php (create if not there) This will get loaded automatically.
Code:
function myFooter(){
echo get_component('your_componenet_name');
}
Code:
add_action( 'theme-footer', 'myFooter', array()); // if you function takes no arguments.