回答編集履歴
3
追記
test
CHANGED
@@ -70,7 +70,7 @@
|
|
70
70
|
|
71
71
|
function lf_custom_feeds_alternate() {
|
72
72
|
|
73
|
-
echo '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr(get_bloginfo("name")) . ' » コメントフィード" href="' . get_feed_link() . '?feed=comments-rss2" />'
|
73
|
+
echo '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr(get_bloginfo("name")) . ' » コメントフィード" href="' . get_feed_link() . '?feed=comments-rss2" />';
|
74
74
|
|
75
75
|
}
|
76
76
|
|
2
追記
test
CHANGED
@@ -52,6 +52,8 @@
|
|
52
52
|
|
53
53
|
今回質問者様の内容から2行目のhrefにURLパラメータが無いという事なので
|
54
54
|
|
55
|
+
functions.phpの
|
56
|
+
|
55
57
|
```
|
56
58
|
|
57
59
|
add_theme_support('automatic-feed-links');
|
@@ -61,6 +63,8 @@
|
|
61
63
|
の箇所を
|
62
64
|
|
63
65
|
```
|
66
|
+
|
67
|
+
// add_theme_support('automatic-feed-links');
|
64
68
|
|
65
69
|
add_action( 'wp_head', 'feed_links', 2 );
|
66
70
|
|
1
追記
test
CHANGED
@@ -1,3 +1,77 @@
|
|
1
1
|
[【WordPress】人気ブログランキングの最新記事の表示方法](https://kokesshiblog.com/ninkiblogranking-wp/)
|
2
2
|
|
3
3
|
こちらが参考になるかと...
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
追記
|
8
|
+
|
9
|
+
[WordPress add_theme_support() で実装される機能](https://qiita.com/gatespace/items/d6419b0b7e49c98ce829)
|
10
|
+
|
11
|
+
```
|
12
|
+
|
13
|
+
add_theme_support('automatic-feed-links');
|
14
|
+
|
15
|
+
```
|
16
|
+
|
17
|
+
これを実行すると
|
18
|
+
|
19
|
+
> <link rel="alternate" type="application/rss+xml" title="サイト名 » フィード" href="サイトのURL" />
|
20
|
+
|
21
|
+
> <link rel="alternate" type="application/rss+xml" title="サイト名 » コメントフィード" href="サイトのURL" />
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
の2行が作成されます。
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
[WordPressのフィードに関する覚え書き](https://gatespace.jp/2012/10/16/wordpress-feeds/)
|
30
|
+
|
31
|
+
これは
|
32
|
+
|
33
|
+
```
|
34
|
+
|
35
|
+
add_theme_support('automatic-feed-links');
|
36
|
+
|
37
|
+
```
|
38
|
+
|
39
|
+
を実行した際
|
40
|
+
|
41
|
+
```
|
42
|
+
|
43
|
+
add_action( 'wp_head', 'feed_links', 2 );
|
44
|
+
|
45
|
+
add_action( 'wp_head', 'feed_links_extra', 3 );
|
46
|
+
|
47
|
+
```
|
48
|
+
|
49
|
+
の2つが呼ばれるからです。
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
今回質問者様の内容から2行目のhrefにURLパラメータが無いという事なので
|
54
|
+
|
55
|
+
```
|
56
|
+
|
57
|
+
add_theme_support('automatic-feed-links');
|
58
|
+
|
59
|
+
```
|
60
|
+
|
61
|
+
の箇所を
|
62
|
+
|
63
|
+
```
|
64
|
+
|
65
|
+
add_action( 'wp_head', 'feed_links', 2 );
|
66
|
+
|
67
|
+
function lf_custom_feeds_alternate() {
|
68
|
+
|
69
|
+
echo '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr(get_bloginfo("name")) . ' » コメントフィード" href="' . get_feed_link() . '?feed=comments-rss2" />'
|
70
|
+
|
71
|
+
}
|
72
|
+
|
73
|
+
add_action( 'wp_head', 'lf_custom_feeds_alternate' );
|
74
|
+
|
75
|
+
```
|
76
|
+
|
77
|
+
と書き換えてみて下さい。
|