サイドバーに検索窓と読んで欲しい記事をおきたいのですが、メインコンテンツとして中央に配置されてしまうのをなおしたいです。
index.php
1 <!--サイドバー--> 2 <div class="col-md-4 col-12"> 3 <?php dynamic_sidebar( 'sidebar_widget01' ); ?> 4 <!--読んで欲しい記事--> 5 <div class="container bg-white mb-5 py-5"> 6 <div class="text-center pb-5"> 7 <h4 class="d-inline-block py-3 border-bottom border-info">読んで欲しい記事</h4> 8 </div> 9 <?php $side_query = new WP_Query( 'tag=sidepickup' ); ?> 10 <?php if ( $side_query->have_posts() ) : ?> 11 <?php while ( $side_query->have_posts() ) : $side_query->the_post(); ?> 12 <div class="pb-5"> 13 <!--サムネイル--> 14 <div class="pb-3"> 15 <?php if ( has_post_thumbnail() ) : ?> 16 <?php the_post_thumbnail('', array( 'class' => 'img-fluid' )); ?> 17 <?php else : ?> 18 <img class="img-fluid" width="100%" src="<?php echo get_template_directory_uri(); ?>/img/wordpress.png" alt=""> 19 <?php endif; ?> 20 </div> 21 <!--記事タイトル--> 22 <h5 class="h5"><a class="text-secondary" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5> 23 </div> 24 <?php endwhile; ?> 25 <?php wp_reset_postdata(); ?> 26 <?php endif; ?> 27 </div> 28 </div>
function.php
1<?php 2// サムネイル 3add_theme_support('post-thumbnails'); 4 5// メニュー機能 6register_nav_menus( 7array( 8'gloval-navigation' => 'グローバル', 9'footer-navigation' => 'フッター', 10) 11); 12 13// ウィジェットの登録 14function my_widgets_init() { 15 16 register_sidebar( array( 17 'name' => 'サイドバー', 18 'id' => 'sidebar_widget01', 19 'before_widget' => '<div class="container bg-white mb-5 py-5>', 20 'after_widget' => '</div>', 21 ) ); 22} 23add_action( 'widgets_init', 'my_widgets_init' );
searchform.php
1<form method="get" action="<?php home_url(); ?>"> 2<input class="form-control" type="txt" name="s" placeholder="Search for"> 3</form>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。