我将此添加到我的WordPress page
if (script.readyState && script.onload!==null){
script.onreadystatechange= function () {
if (this.readyState == 'complete') mce_preload_check();
}
}
并且&&
正在转向
if (script.readyState && script.onload!==null){
我在WordPress HTML视图中粘贴了这个,我确保这很好,但WordPress一直在显示它。如何解决这个问题?
答案 0 :(得分:7)
您需要禁用WP的自动格式化。即使在html编辑器中,WP也会自动格式化,空格和换行符会破坏你的javascript。
使用此插件http://wordpress.org/extend/plugins/wp-no-format/
2015年4月8日更新:插件已过时但仍适用于我。
这也有效:将插件直接添加到functions.php ,并将您的javascript括在<!-- noformat on -->
和<!-- noformat off -->
代码中
添加到functions.php文件:
function newautop($text)
{
$newtext = "";
$pos = 0;
$tags = array('<!-- noformat on -->', '<!-- noformat off -->');
$status = 0;
while (!(($newpos = strpos($text, $tags[$status], $pos)) === FALSE))
{
$sub = substr($text, $pos, $newpos-$pos);
if ($status)
$newtext .= $sub;
else
$newtext .= convert_chars(wptexturize(wpautop($sub))); //Apply both functions (faster)
$pos = $newpos+strlen($tags[$status]);
$status = $status?0:1;
}
$sub = substr($text, $pos, strlen($text)-$pos);
if ($status)
$newtext .= $sub;
else
$newtext .= convert_chars(wptexturize(wpautop($sub))); //Apply both functions (faster)
//To remove the tags
$newtext = str_replace($tags[0], "", $newtext);
$newtext = str_replace($tags[1], "", $newtext);
return $newtext;
}
function newtexturize($text)
{
return $text;
}
function new_convert_chars($text)
{
return $text;
}
remove_filter('the_content', 'wpautop');
add_filter('the_content', 'newautop');
remove_filter('the_content', 'wptexturize');
add_filter('the_content', 'newtexturize');
remove_filter('the_content', 'convert_chars');
add_filter('the_content', 'new_convert_chars');
答案 1 :(得分:0)
另一种选择是制作shortcode。在此示例中,仅当短代码包含属性x
和y
时才会打印,例如:[myscript x="10" y="20"]
。我正在使用一个简单的脚本来显示带有属性值的JS警告对话框。
add_shortcode( 'myscript', 'sample_shortcode_so_6195635' );
function sample_shortcode_so_6195635( $atts, $content = null )
{
if( isset( $atts['x'] ) && isset( $atts['y'] ) )
{
$x = $atts['x'];
$y = $atts['y'];
// See: http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc
$html = <<<HTML
<button onclick="myalert()">Show Shortcode Atts</button>
<script type="text/javascript">
function myalert()
{
if( $x < 10 && $y < 20 )
alert( 'X less than 10 and Y less than 20' );
else
alert( 'other' );
}
</script>
HTML;
return $html;
}
}
答案 2 :(得分:0)
确保在您的页面上执行以下几行(通过内联 PHP(您需要一个插件)或“functions.php”):
remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_content', 'wptexturize' );
remove_filter( 'the_content', 'convert_chars' );
答案 3 :(得分:-1)
这里是一篇帖子,解释了WordPress帖子和页面如何处理&s以及如何使用“ Unicode代码点值(0026)作为解决此问题的最佳方法”。
http://news.mullerdigital.com/2014/09/11/prevent-ampersand-issues-javascript-wordpress-pages-posts/