답변:
얘들 아, 내가 알 것 같아! WordPress의 taxonomy.php 파일에서 몇 가지 기능을 살펴본 후 get_object_taxonomies();
트릭을 수행 한이 기능 을 발견했습니다. :)
기능은 다음과 같습니다
function get_post_taxonomies($post) {
// Passing an object
// Why another var?? $output = 'objects'; // name / objects
$taxonomies = get_object_taxonomies($post, 'objects');
/*// Passing a string using get_post_type: return (string) post, page, custom...
$post_type = get_post_type($post);
$taxonomies = get_object_taxonomies($post_type, 'objects');*/
/*// In the loop with the ID
$theID = get_the_ID();
$post_type = get_post_type($theID);
$taxonomies = get_object_taxonomies($post_type, 'objects');*/
// You can also use the global $post
// edited to fix previous error $taxonomies
// edited to force type hinting array
return (array) $taxonomies; // returning array of taxonomies
}
for
or foreach
루프를 사용하여 정렬하는 것 입니다.
$taxonomies = get_object_taxonomies( array( 'post_type' => $post_type ) ); foreach( $taxonomies as $taxonomy ) : // Gets every "category" (term) in this taxonomy to get the respective posts $terms = get_terms( $taxonomy ); ?> <ul class="specials"><?php foreach( $terms as $term ) : ?> <li><h2 ><?php echo $term->name; ?></h2>
get_categories 가 작업을 수행합니다.
get_categories('taxonomy=taxonomy_name&type=custom_post_type');
당신은 아무것도 시도 했습니까? 이 같은?
<?php
$args=array(
'object_type' => array('event')
);
$output = 'names'; // or objects
$operator = 'and'; // 'and' or 'or'
$taxonomies=get_taxonomies($args,$output,$operator);
if ($taxonomies) {
foreach ($taxonomies as $taxonomy ) {
echo '<p>'. $taxonomy. '</p>';
}
}
?>
get_taxonomies();
코덱 에서 함수를 보았지만 문서가 매우 좋지 않고 게시물 유형을 전달할 수있는 방법을 모릅니다.