質問編集履歴

2

テンプレートをmobileフォルダ内のfooter.phpに変更しました。

2020/05/30 02:23

投稿

mocomoco.press
mocomoco.press

スコア12

test CHANGED
File without changes
test CHANGED
@@ -16,32 +16,36 @@
16
16
 
17
17
  この場合、どうすれば文字列を消すことができますか?
18
18
 
19
- ![イメージ説明](dc86cba12c059fcaa3ad08cb4a88edfa.png)
20
19
 
21
20
 
22
-
23
- ↓29行目〜38行目の抜粋です。
21
+ ↓28行目〜40行目の抜粋です。
24
22
 
25
23
  ```
26
24
 
27
25
  /**
28
26
 
29
- * Container bottom widget area
27
+ * Next / prev post link(Single page only)
30
28
 
31
29
  */
32
30
 
33
- if (!is_404() && is_active_sidebar('widget-container-bottom')) {
31
+ if (is_single()){
34
32
 
35
- $append_widget_container_bottom_class = '';
33
+ if ($prev_post) {
36
34
 
37
- // get the widget
35
+ $nav_url = get_permalink($prev_post->ID);
38
36
 
39
- ob_start();
37
+ echo '<a href="'.$nav_url.'" class="btbar_btn"><div class="btbtn_inner preva"><i class="menu_icon icon-left-light"></i><span class="cap">'.__('Prev', 'DigiPress').'</span></div></a>';
40
38
 
41
- dynamic_sidebar('widget-container-bottom');
39
+ }
42
40
 
43
- $widget_container_bottom_content = ob_get_contents();
41
+ if ($next_post) {
44
42
 
45
- ob_end_clean();
43
+ $nav_url = get_permalink($next_post->ID);
44
+
45
+ echo '<a href="'.$nav_url.'" class="btbar_btn"><div class="btbtn_inner nexta"><i class="menu_icon icon-right-light"></i><span class="cap">'.__('Next', 'DigiPress').'</span></div></a>';
46
+
47
+ }
48
+
49
+ }?>
46
50
 
47
51
  ```

1

phpの抜粋を追加しました。

2020/05/30 02:23

投稿

mocomoco.press
mocomoco.press

スコア12

test CHANGED
File without changes
test CHANGED
@@ -17,3 +17,31 @@
17
17
  この場合、どうすれば文字列を消すことができますか?
18
18
 
19
19
  ![イメージ説明](dc86cba12c059fcaa3ad08cb4a88edfa.png)
20
+
21
+
22
+
23
+ ↓29行目〜38行目の抜粋です。
24
+
25
+ ```
26
+
27
+ /**
28
+
29
+ * Container bottom widget area
30
+
31
+ */
32
+
33
+ if (!is_404() && is_active_sidebar('widget-container-bottom')) {
34
+
35
+ $append_widget_container_bottom_class = '';
36
+
37
+ // get the widget
38
+
39
+ ob_start();
40
+
41
+ dynamic_sidebar('widget-container-bottom');
42
+
43
+ $widget_container_bottom_content = ob_get_contents();
44
+
45
+ ob_end_clean();
46
+
47
+ ```