我有一個wordpress網站Twenty Eleven兒童主題。 在我的側邊欄,我從嵌入jQuery的垂直兆豐菜單控件:jQuery垂直超大菜單子菜單在加載時閃爍。如何阻止它在wordpress中閃爍
http://wordpress.org/extend/plugins/jquery-vertical-mega-menu/
菜單正常工作。唯一的問題是,當網站加載時,有一個簡短的 FOUC(閃爍的未風格的內容)。
http://en.wikipedia.org/wiki/Flash_of_unstyled_content
我不知道如何阻止它閃爍。我用解決方案閱讀了一些類似的問題,但我無法弄清楚如何將它應用到我的孩子主題。
有人說你必須加jQuery(document).ready(function() {
。但是在哪裏?我試着將它添加到我的子主題的functions.php中:
<?php
....
.....
function id_scripts() {
jQuery(document).ready(function() { echo 'test'});
}
add_action('wp_enqueue_scripts', 'id_scripts');
>
但它給了我一個解析錯誤說:
Parse error: syntax error, unexpected T_FUNCTION, expecting ')' in /..../functions.php on line 28
你能提供鏈接嗎? – 2013-03-08 12:15:46
http://www.lordbau.at/wordpress/ – es1 2013-03-08 13:17:56
你能刪除你添加的代碼並恢復到之前的狀態嗎? – 2013-03-08 13:22:52