How would I put the following code, for a certain shopping cart, just before the closing body tag in my WordPress site? In the footer? It seems to me that I would only want to call startcart() for product pages. Thanks very much.
<script language="javascript" type="text/javascript">
startcart()
</script>
If you’re just using a small script or other markup, you can hook a function to the
wp_footer
filter, which should be included in all properly-coded themes:However, if your JavaScript code is more substantial, or you wish to use built-in libraries such as jQuery, you should put the code in an external file and enqueue it properly using the
wp_enqueue_script()
function:You can read more about how to use the
wp_enqueue_script()
function in the CodexIf you need more help, please post a comment below.