質問編集履歴

1

テーマの詳細、試したこと

2017/12/31 05:25

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -73,3 +73,67 @@
73
73
  }
74
74
 
75
75
  ```
76
+
77
+ ###テーマ詳細
78
+
79
+ LION MEDIA
80
+
81
+ [http://lionmedia.fit-jp.com/](http://lionmedia.fit-jp.com/)
82
+
83
+
84
+
85
+ ###試したこと
86
+
87
+ 下記の通り、after_allという関数を作って、その中に既存の関数をいれて、最後の行で親テーマの後に実行というふうになると思ったのですが、うまくいきませんでした。
88
+
89
+ ```ここに言語を入力
90
+
91
+ function after_all() {
92
+
93
+  function fit_archive_title() {
94
+
95
+ $title = get_bloginfo( 'name' );
96
+
97
+ if ( is_category() ) {
98
+
99
+ $title = 'カテゴリー:'. single_cat_title( '', false );
100
+
101
+ } elseif ( is_tag() ) {
102
+
103
+ $title = 'タグ:'. single_tag_title( '', false );
104
+
105
+ } elseif ( is_author() ) {
106
+
107
+ $title = '投稿者:'. get_the_author();
108
+
109
+ } elseif ( is_year() ) {
110
+
111
+ $title = '年別:'. get_the_date('Y年') ;
112
+
113
+ } elseif ( is_month() ) {
114
+
115
+ $title = '月別:'. get_the_date('Y年n月') ;
116
+
117
+ } elseif ( is_day() ) {
118
+
119
+ $title = '日別:'. get_the_date('Y年n月j日') ;
120
+
121
+ } elseif ( is_search() ) {
122
+
123
+ $title = '検索:「'.get_search_query().'」の検索結果' ;
124
+
125
+ } elseif ( is_404() ) {
126
+
127
+ $title = 'エラー:Hello! My Name Is 404' ;
128
+
129
+ }
130
+
131
+ return $title;
132
+
133
+ }
134
+
135
+ }
136
+
137
+ add_action( 'after_setup_theme', 'after_all' );
138
+
139
+ ```