質問編集履歴

2

修正

2021/07/28 04:34

投稿

noaa_iris
noaa_iris

スコア0

test CHANGED
File without changes
test CHANGED
@@ -24,7 +24,57 @@
24
24
 
25
25
 
26
26
 
27
- $labels = [ "name" => __( "news", "custom-post-type-ui" ), "singular_name" => __( "news", "custom-post-type-ui" ), ]; $args = [ "label" => __( "news", "custom-post-type-ui" ), "labels" => $labels, "description" => "", "public" => true, "publicly_queryable" => true, "show_ui" => true, "show_in_rest" => true, "rest_base" => "", "rest_controller_class" => "WP_REST_Posts_Controller", "has_archive" => false, "show_in_menu" => true, "show_in_nav_menus" => true, "delete_with_user" => false, "exclude_from_search" => false, "capability_type" => "post", "map_meta_cap" => true, "hierarchical" => false, "rewrite" => [ "slug" => "news", "with_front" => true ], "query_var" => true, "supports" => [ "title", "editor", "thumbnail" ], "show_in_graphql" => false, ]; register_post_type( "news", $args ); } add_action( 'init', 'cptui_register_my_cpts_news' );
27
+ $labels = [ "name" => __( "news", "custom-post-type-ui" ), "singular_name" => __( "news", "custom-post-type-ui" ), ];
28
+
29
+
30
+
31
+ $args = [
32
+
33
+ "label" => __( "news", "custom-post-type-ui" ),
34
+
35
+ "labels" => $labels,
36
+
37
+ "description" => "",
38
+
39
+ "public" => true,
40
+
41
+ "publicly_queryable" => true,
42
+
43
+ "show_ui" => true,
44
+
45
+ "show_in_rest" => true,
46
+
47
+ "rest_base" => "",
48
+
49
+ "rest_controller_class" => "WP_REST_Posts_Controller",
50
+
51
+ "has_archive" => false,
52
+
53
+ "show_in_menu" => true,
54
+
55
+ "show_in_nav_menus" => true,
56
+
57
+ "delete_with_user" => false,
58
+
59
+ "exclude_from_search" => false,
60
+
61
+ "capability_type" => "post",
62
+
63
+ "map_meta_cap" => true,
64
+
65
+ "hierarchical" => false,
66
+
67
+ "rewrite" => [ "slug" => "news", "with_front" => true ],
68
+
69
+ "query_var" => true,
70
+
71
+ "supports" => [ "title", "editor", "thumbnail" ],
72
+
73
+ "show_in_graphql" => false, ];
74
+
75
+
76
+
77
+ register_post_type( "news", $args ); } add_action( 'init', 'cptui_register_my_cpts_news' );
28
78
 
29
79
 
30
80
 

1

追記

2021/07/28 04:34

投稿

noaa_iris
noaa_iris

スコア0

test CHANGED
File without changes
test CHANGED
@@ -2,10 +2,34 @@
2
2
 
3
3
  wordpressでCPT UIをインストールしました。
4
4
 
5
- そこでカスタムタクスノミーでnewsというタクノミーを作ってそれが表示されるページをnewsのアーカイブとして、トップページからリンクさせているのですが、そのタクノミーが表示されるページのタイトル(news)の横に「-tax-」と表示されています。
5
+ そこでカスタムタクスノミーでnewsというタクノミーを作ってそれが表示されるページをnewsのアーカイブとして、トップページからリンクさせているのですが、そのタクノミーが表示されるページのタイトル(news)の横に「-tax-」と表示されています。
6
6
 
7
7
  この文字を消す方法はありますか?
8
8
 
9
9
 
10
10
 
11
11
  お手数をおかけいたしますがよろしくお願いします。
12
+
13
+
14
+
15
+ 追記
16
+
17
+
18
+
19
+ テーマ名はSWELLの子テーマであるSWELL CHILDを使用しています。
20
+
21
+
22
+
23
+ タクソノミーの定義コードというのはどこにあるのかわかりませんでした。 phpもわからないのですが、fanction.phpに追加されている部分は以下の通りです。
24
+
25
+
26
+
27
+ $labels = [ "name" => __( "news", "custom-post-type-ui" ), "singular_name" => __( "news", "custom-post-type-ui" ), ]; $args = [ "label" => __( "news", "custom-post-type-ui" ), "labels" => $labels, "description" => "", "public" => true, "publicly_queryable" => true, "show_ui" => true, "show_in_rest" => true, "rest_base" => "", "rest_controller_class" => "WP_REST_Posts_Controller", "has_archive" => false, "show_in_menu" => true, "show_in_nav_menus" => true, "delete_with_user" => false, "exclude_from_search" => false, "capability_type" => "post", "map_meta_cap" => true, "hierarchical" => false, "rewrite" => [ "slug" => "news", "with_front" => true ], "query_var" => true, "supports" => [ "title", "editor", "thumbnail" ], "show_in_graphql" => false, ]; register_post_type( "news", $args ); } add_action( 'init', 'cptui_register_my_cpts_news' );
28
+
29
+
30
+
31
+ 表示されるHTMLコードは以下になります。
32
+
33
+
34
+
35
+ <span class="c-pageTitle__subTitle u-fz-14">– tax –</span>