「Easy Table of Contents」に乗り換えたいため
「Table of Contents Plus」を停止させたいのですが、
停止させると「Contact Form 7」が表示されなくなってしまいます。
他にこのような事例を聞いたことがありません。
対処法をご存じの方おりましたらご教授いただると助かります。
何卒よろしくお願い致します。
Wordpress、プラグイン共に最新バージョンです。
##詳細情報
Contact Form 7で作成したお問い合わせフォームを
ウィジェットに「カスタムHTML」で埋め込んでおります。
###function.php
php
1register_sidebar(array( 2 'name' => 'お問い合わせフォーム', 3 'id' => 'contact', 4 'description' => '', 5 'before_widget' => '<section id="widget" class="%2$s sidebar-top">', 6 'after_widget' => '</section>', 7 'before_title' => '<h2>', 8 'after_title' => '</h2>' 9));
###footer.php
php
1<?php if (is_active_sidebar('sidebar')) : 2 dynamic_sidebar('contact'); 3else : ?>
あなたの回答
tips
プレビュー