PluginProbe
Tracking Script Manager / 2.0.10
Tracking Script Manager v2.0.10
trunk 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 2.0.0 2.0.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.14 2.0.15 All 33 releases
tracking-script-manager / templates / script-location-metabox.php

script-location-metabox.php in Tracking Script Manager 2.0.10, at templates/script-location-metabox.php

8 lines 852 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 &lt;body&gt;</option>
4 <option value="footer"<?php if ( $location === 'footer' ) { echo ' selected="selected"'; } ?>>Footer</option>
5 </select>
6
7 <p>Note: to use the "After &lt;body&gt;" location, you must include: <code>do_action( 'wp_body_open' );</code> directly after the opening <code>&lt;body&gt;</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>