ホーム » WordPress

ページでエラーが発生しました。

Submitted by on 2009年5月24日 – 18:581件のコメントがあります。

WordPres

これが一番嫌いです。覚書


メッセージ: 'null' は Null またはオブジェクトではありません。
ライン: 99
文字: 5
コード: 0
URI: http://sunq.jp/style/
<script type="text/javascript">
$(function() {

    $(".arthemia-carousel").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
        vertical: true,
        hoverPause:true,
        visible: 5,
        auto:1000,
        speed:1000
    });
});
</script>

原因はイメージスクロールのjcarousellite_1.0.1c4.jsとフェイスアイコン表示プラグインwp_grins_jsが当たるようです。
トップページのみheader.phpを違うものに変更。

index.php
<?php include (TEMPLATEPATH . '/header_top.php'); ?>
header_top.php
<?php if (is_singular()) wp_enqueue_script('comment-reply'); wp_head(); ?>を
<?php if (is_singular()) wp_enqueue_script('comment-reply'); ?>に変更

人気度: 3% [?]