जवाबों:
हे लोग मुझे लगता है कि मैं समझ गया! वर्डप्रेस में 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
या 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();
कोडेक्स पर फ़ंक्शन को देखा, लेकिन इसमें बहुत खराब प्रलेखन है और मुझे पता नहीं था कि मैं पोस्ट प्रकार कैसे पास कर सकता हूं।