如何在wordpress中隐藏我的脚本文件。我试过这个主意blog
// include a javascript file
echo "<script type=\'text/javascript\'>
/* All your javascript code goes here */
</script>";
我遇到了这样一个错误:
Parse error: syntax error, unexpected \'echo\' (T_ECHO), expecting \',\' or \';\' in child-2\\scripts.php on line 14
第14行是:
document.getElementById(\'next-btn\').disabled = false;
这个header.php
文件具有:<?php include(\'scripts.php\'); ?>
如何隐藏javascript文件?
任何插件或任何其他方法来隐藏我的脚本。wordpress网站上的js文件。。。