2019/10/23 09:36 編集
はーい
投稿2019/10/23 09:19
編集2019/10/23 10:21wordpressでwebサイト作成をしています.
固定ページに遷移するとサイドバーやwordpressのメニューバー,ドロップダウンメニューが表示されません.
PC版とモバイル版の画像を添付します.
これらの2つが固定ページではないページです.
サイドバーとwordpressのメニュー,プラグイン(WP Responsive Menu)が表示されています.
しかし,固定ページの場合は,表示されません.消えてしまいます.
使用しているプラグインをすべて無効化にしましたが,そのままです.
固定ページのページ属性を変えましたが,そのままです.
php
1<?php 2/** 3 * Cocoon WordPress Theme 4 * @author: yhira 5 * @link: https://wp-cocoon.com/ 6 * @license: http://www.gnu.org/licenses/gpl-2.0.html GPL v2 or later 7 */ 8if ( !defined( 'ABSPATH' ) ) exit; 9 10if ( is_active_sidebar( 'sidebar' ) ) : ?> 11<div id="sidebar" class="sidebar nwa cf" role="complementary"> 12 13 <?php //サイドバー上の広告表示 14 if (is_ad_pos_sidebar_top_visible() && is_all_adsenses_visible()){ 15 get_template_part_with_ad_format(get_ad_pos_sidebar_top_format(), 'ad-sidebar-top', is_ad_pos_sidebar_top_label_visible()); 16 }; ?> 17 18 <?php dynamic_sidebar( 'sidebar' ); ?> 19 20 <?php //サイドバー下の広告表示 21 if (is_ad_pos_sidebar_bottom_visible() && is_all_adsenses_visible()){ 22 get_template_part_with_ad_format(get_ad_pos_sidebar_bottom_format(), 'ad-sidebar-bottom', is_ad_pos_sidebar_bottom_label_visible()); 23 }; ?> 24 25 <?php 26 //////////////////////////// 27 //サイドバー追従領域 28 //////////////////////////// 29 if ( is_active_sidebar( 'sidebar-scroll' ) ) : ?> 30 <div id="sidebar-scroll" class="sidebar-scroll"> 31 <?php dynamic_sidebar( 'sidebar-scroll' ); ?> 32 </div> 33 <?php endif; ?> 34 35</div> 36<?php endif; ?> 37
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/23 10:11
2019/10/23 10:14
2019/10/23 10:24
退会済みユーザー
2019/10/23 10:41
2019/10/23 11:50
2019/10/23 11:54 編集
2019/10/23 12:03