I just want to ask on how to print script 'javascript' at the footer using simple plugin. I'm using WordPress 3.0 any ideas?
Use a functions.php file inside your theme template add this :
<?php function add_this_script_footer(){ ?> [YOUR JS CODE HERE] <?php } add_action('wp_footer', 'add_this_script_footer'); ?>
Hope it helps!
2.1m questions
2.1m answers
60 comments
57.0k users