回答編集履歴
1
訂正
test
CHANGED
@@ -23,3 +23,33 @@
|
|
23
23
|
?>
|
24
24
|
|
25
25
|
```
|
26
|
+
|
27
|
+
↑は間違いでした。ループの中に入れたつもり・・・
|
28
|
+
|
29
|
+
↓訂正
|
30
|
+
|
31
|
+
```
|
32
|
+
|
33
|
+
<?php
|
34
|
+
|
35
|
+
$terms = get_terms('お花', hide_empty=0);
|
36
|
+
|
37
|
+
foreach ( $terms as $term ) {
|
38
|
+
|
39
|
+
if( $term->name === 'バラ' ) {
|
40
|
+
|
41
|
+
$id = ' id="menu_on"';
|
42
|
+
|
43
|
+
} else {
|
44
|
+
|
45
|
+
$id = '';
|
46
|
+
|
47
|
+
}
|
48
|
+
|
49
|
+
echo '<li><a href="'.get_term_link($term).'"'.$id.'>'.$term->name.'</a></li>';
|
50
|
+
|
51
|
+
}
|
52
|
+
|
53
|
+
?>
|
54
|
+
|
55
|
+
```
|