분류법과 범주간에 차이점이 있습니까?
-
-
기본 카테고리를 사용하는 것보다 사용자 지정 게시물 유형에 대한 사용자 지정 분류를 작성하여 혼동을 줄여야한다고 생각합니다.I think you should create custom taxonomies for custom post types rather than use the native categories so its less confusing.
- 0
- 2015-07-31
- Brad Dalton
-
3 대답
- 투표
-
- 2014-08-18
이전에 설명 된 분류법은 다음에 대한 집합 명사입니다.
-
카테고리
-
포스트 _ 태그
-
포스트 _ 형식
-
링크 _ 카테고리
-
맞춤 분류
처음 4 개는 기본 제공 분류법이고 맞춤 분류법은 사용자가
register_taxonomy <를 사용하여 수동으로 생성 한 분류법입니다./code>
. 사용자 지정 분류는 계층 적 (기본 제공 분류카테고리
등) 일 수도 있고 (포스트 태그와 같은) 계층적일 수도 없습니다.백엔드에서 '게시물'화면 아래에 만드는 카테고리와 태그는 실제로
분류법의 용어입니다.카테고리
및post_tag
post_format
으로 추가 용어를 만들 수 없습니다.post_format
은post_format_video
,post_format_gallery
등과 같은 용어로 빌드됩니다. 포함 된 모든 게시물 형식은 코덱스를 참조하세요.수정
내 다이어그램과 누락 된
post_format
분류를 포함하도록 코덱의 택 소노 미 페이지를 업데이트했습니다.Taxonomies, as previously described are a collective noun for the following
category
post_tag
post_format
link_category
custom taxonomy
The first four are built-in taxonomies, while custom taxonomies are taxonomies that are manually created by the user with
register_taxonomy
. Custom Taxonomies can be hierarchical (like the build-in taxonomycategory
) or not (like post tags)The categories and tags that you create in the back end under the 'Posts' screen are in actual fact terms of the taxonomies
category
andpost_tag
You cannot create extra terms in
post_format
.post_format
have the build in terms likepost_format_video
,post_format_gallery
etc. See the codex for all post formats includedEDIT
I have updated the Taxonomies page in the codex to include my diagram and the missing
post_format
taxonomy-
+1.약간의pedantry : 내장 분류법조차도`register_taxonomy`를 통해 생성됩니다.[2 회] (https://github.com/WordPress/WordPress/blob/master/wp-settings.php#L205).:)+1. Just a bit of pedantry: even built-in taxonomies are created via `register_taxonomy`. [2 times](https://github.com/WordPress/WordPress/blob/master/wp-settings.php#L205). :)
- 3
- 2014-08-18
- gmazzap
-
Jip이지만 사용자가 수동으로 생성하지는 않습니다.그러나 귀하의 요점을 참조하십시오. 실제로 내 대답에 구체적인 세부 사항을 추가해야했습니다.:-) 많은 감사합니다Jip, but they aren't manually created by the user. See your point though, I actually should have added that specific detail in my answer. :-) Many thanks
- 0
- 2014-08-18
- Pieter Goosen
-
솔직히 말해서 게시물 유형과 분류의 어리석은 이중 등록에 대해 WordPress를 놀리는 기회를 놓치지 않기 위해 댓글을 추가했습니다.To be honest I added the comments to not miss the opportunity to tease WordPress about that stupid double registration of post types and taxonomies :D
- 0
- 2014-08-18
- gmazzap
-
@goose 이미지를 클릭하면 크기가 커지면 더 좋을 것입니다.Would be better if when you click the image @goose, it increases in size.
- 1
- 2014-08-18
- Brad Dalton
-
@ G.M.하하하,이 모든 것의 농담을 보라.같은 고기를 두 번 먹는 것 같아요@G.M. hahaha, see the joke in all of this. It's like eating the same piece of meat twice
- 1
- 2014-08-18
- Pieter Goosen
-
- 2014-08-17
카테고리,태그,링크 카테고리 및 게시물 형식은 분류 체계에 내장되어 있습니다.
에서 <인용구>기본적으로 분류는 항목을 함께 그룹화하는 방법입니다.
분류에있는 여러 그룹의 이름을 용어라고합니다.예를 들어 동물 그룹을 사용하여 한 그룹은 "birds",다른 그룹은 "fish"라고 부를 수 있습니다.& quot; 물고기 & quot;및 & quot; 새 & quot;분류 체계의 용어입니다.WordPress의 예로 카테고리 또는 태그 (다음 섹션 참조)가 용어입니다.
Category, Tag, Link Category and Post Formats are built in taxonomies.
From Codex
Basically, a taxonomy is a way to group things together.
The names for the different groupings in a taxonomy are called terms. Using groupings of animals as an example, we might call one group "birds", and another group "fish". "Fish" and "birds" are terms in our taxonomy. As an example from WordPress, a category or tag (see next section) is a term.
-
- 2017-03-07
Category
는 WordPress에 내장 된taxonomy
중 하나입니다.이렇게 정리하면 분류는 항목을 함께 그룹화하는 방법입니다.
우리는 내장 된 분류와 마찬가지로 WordPress에서 사용자 정의 분류법을 만들 수 있습니다.예를 들어
Cars
는 다음과 같은terms
가있는 분류 일 수 있습니다.Audi Toyota Benz Mazda
주로
의 두 가지 유형의 분류법을 사용할 수 있습니다.hierarchical
및non hierarchical
Category
는 계층 적 분류의 가장 좋은 예이고Tag
는 비 계층 적 분류의 예입니다.Category
is one of the built intaxonomy
in WordPress.so to clear things: taxonomy is a way to group things together.
we can create custom taxonomies in WordPress just like builtin ones. for example
Cars
could be a taxonomy withterms
likeAudi Toyota Benz Mazda
there are mainly two types of taxonomies available which are
hierarchical
andnon hierarchical
Category
is best example of hierarchical taxonomy andTag
is an example of non hierarchical taxonomy
나는 WordPress의 코덱을 면밀히 읽고 분류가 무엇인지 카테고리가 무엇인지 사이의 모호한 정의에 대해 혼란 스럽습니다.그 점에서 용어는 분류법 설명에 사용되는 단어이기도하지만 분류법에만 국한되지 않음을 암시하는 방식으로 사용 된 것 같습니다.
둘 다 게시물을 분류하고 그룹화하는 방법으로 설명됩니다.분류법이보다 일반적인 범주의 형태라는 것을 이해하지만 서로 정확히 어떻게 관련되어 있습니까?
내가 이해하지 못하는 미묘한 차이가 있습니까?