Description
Runs in the footer.php before the closing html body tag and after all divs.
<?php function appthemes_after() { do_action('appthemes_after'); } ?> |
Example
<?php function insert_code_after_stuff() { // do something here } add_action( 'appthemes_after', 'insert_code_after_stuff' ); ?> |
Changelog
- since 1.1
Source File
appthemes_after()
is located in includes/appthemes-hooks.php
.