| 1 |
<select id="r8_tsm_script_location" name="r8_tsm_script_location"> |
| 2 |
<option value="header"<?php if ( $location === 'header' ) { echo ' selected="selected"'; } ?>>Header</option> |
| 3 |
<option value="page"<?php if ( $location === 'page' ) { echo ' selected="selected"'; } ?>>After <body></option> |
| 4 |
<option value="footer"<?php if ( $location === 'footer' ) { echo ' selected="selected"'; } ?>>Footer</option> |
| 5 |
</select> |
| 6 |
|
| 7 |
<p>Note: to use the "After <body>" location, you must include: <code>do_action( 'wp_body_open' );</code> directly after the opening <code><body></code> tag in your theme. Typically this can be found in header.php but can vary theme to theme.<br /> |
| 8 |
For more information on setting this up see <a href="https://red8interactive.com/products/tracking-scripts-manager/">Tracking Script Manager's landing page</a>.</p> |