This option is available only after v3.8.4
Sometimes, due to the javascript error on any script, Our code may not run. In that case, you can include our script after the body tag open.
To include to the body tag, Your theme must support the wp_body_open hook
How to Check wp_body_open hook support?
- Go to Appearance
- Go to Theme File Editor
- Open header.php from the sidebar
- Search for
<body>
- After your code must be as below
<body <?php body_class(); ?>>
<?php
do_action("wp_body_open");
?>
You can replace that if doesn’t exist.
This will not affect your theme.