質問編集履歴
2
seach.phpの説明を追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -96,9 +96,13 @@
|
|
96
96
|
|
97
97
|
|
98
98
|
|
99
|
-
|
99
|
+
(追記)
|
100
100
|
|
101
|
-
|
101
|
+
以下、サイドバーの読み込み部分です。
|
102
|
+
|
103
|
+
サイドバーは右カラムにあるので下の方のrightと書かれているコードあたりで読み込んでいるものと思われます。
|
104
|
+
|
105
|
+
```php
|
102
106
|
|
103
107
|
<div class="container">
|
104
108
|
|
1
記事一覧ページでサイドバーを読み込んでいる個所を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -96,6 +96,72 @@
|
|
96
96
|
|
97
97
|
|
98
98
|
|
99
|
+
サイドバーの読み込み部分
|
100
|
+
|
101
|
+
```search.php(記事一覧ページ)
|
102
|
+
|
103
|
+
<div class="container">
|
104
|
+
|
105
|
+
<div class="row">
|
106
|
+
|
107
|
+
<?php
|
108
|
+
|
109
|
+
do_action( 'hestia_before_search_content' );
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
if ( $hestia_blog_sidebar_layout === 'sidebar-left' ) {
|
114
|
+
|
115
|
+
get_sidebar();
|
116
|
+
|
117
|
+
}
|
118
|
+
|
119
|
+
?>
|
120
|
+
|
121
|
+
<div class="<?php echo esc_attr( $wrap_class ); ?>">
|
122
|
+
|
123
|
+
<?php
|
124
|
+
|
125
|
+
if ( have_posts() ) :
|
126
|
+
|
127
|
+
while ( have_posts() ) :
|
128
|
+
|
129
|
+
the_post();
|
130
|
+
|
131
|
+
get_template_part( 'template-parts/content' );
|
132
|
+
|
133
|
+
endwhile;
|
134
|
+
|
135
|
+
the_posts_pagination();
|
136
|
+
|
137
|
+
else :
|
138
|
+
|
139
|
+
get_template_part( 'template-parts/content', 'none' );
|
140
|
+
|
141
|
+
endif;
|
142
|
+
|
143
|
+
?>
|
144
|
+
|
145
|
+
</div>
|
146
|
+
|
147
|
+
<?php
|
148
|
+
|
149
|
+
if ( $hestia_blog_sidebar_layout === 'sidebar-right' ) {
|
150
|
+
|
151
|
+
get_sidebar();
|
152
|
+
|
153
|
+
}
|
154
|
+
|
155
|
+
?>
|
156
|
+
|
157
|
+
</div>
|
158
|
+
|
159
|
+
</div>
|
160
|
+
|
161
|
+
```
|
162
|
+
|
163
|
+
|
164
|
+
|
99
165
|
以上になります。
|
100
166
|
|
101
167
|
わかりづらい内容で大変申し訳ございませんが、もしおわかりになられる方がいらっしゃいましたらご教示いただけると大変助かります。
|