wordpressのGK PORTFOLIOというテーマの固定ページにサイドバーを追加しようとしているのですが、下に落ちてしまいます。
ここまでに行った作業は
(1)function.phpにregister_sidebarを追加
(2)sidebar.phpにdynamic_sidebarを追加
(3)page.phpにget_sidebarを追加
です。
現状のpage.phpは以下の通りです
php
1<?php 2/** 3 * The template for displaying all pages 4 * 5 */ 6 7get_header(); ?> 8 9 <div id="primary" class="content-area<?php if (!(have_comments() || comments_open())) : ?> no-comments-area<?php endif; ?>"> 10 <div id="content" class="site-content" role="main"> 11 <?php while ( have_posts() ) : the_post(); ?> 12 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 13 <div> 14 <header class="entry-header"> 15 <?php if ( has_post_thumbnail() && ! post_password_required() ) : ?> 16 <div class="entry-thumbnail"> 17 <?php the_post_thumbnail(); ?> 18 </div> 19 <?php endif; ?> 20 <h1 class="entry-title"> 21 <?php the_title(); ?> 22 </h1> 23 </header><!-- .entry-header --> 24 25 <div class="entry-content"> 26 <?php the_content(); ?> 27 <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'portfolio' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?> 28 </div><!-- .entry-content --> 29 <footer class="entry-meta"> 30 <?php edit_post_link( __( 'Edit', 'portfolio' ), '<span class="edit-link">', '</span>' ); ?> 31 </footer><!-- .entry-meta --> 32 </div> 33 </article><!-- #post --> 34 <?php endwhile; ?> 35 </div><!-- #content --> 36 <aside> 37 <?php get_sidebar(); ?> 38 </aside> 39 </div><!-- #primary --> 40 41 <?php comments_template(); ?> 42<?php get_footer(); ?>
そもそもget_sidebarの位置が違うのでしょうか?
ページの幅に対して幅が大きすぎるのかと思い、
追加cssでサイドバーの幅を縮めてみたりしたのですが、改善されません。
追加で必要な作業や確認すべきところがあれば教えてください。
宜しくお願い致します。
あなたの回答
tips
プレビュー