This is a very basic question but how/where do I add the following so it gets inserted on all pages before the <head>
:
<meta http-equiv="X-Frame-Options" content="allow">
Hi JAMMAN!
Add this to your child theme functions.php file.
add_action( 'wp_head', 'enfold_customization_header_scripts' );
function enfold_customization_header_scripts(){
echo '<meta http-equiv="X-Frame-Options" content="allow">';
}
Cheers!
Elliott