अच्छा है! घोस्टऑन का समाधान वही था जिसकी मुझे तलाश थी। मेरी स्थिति में कस्टम पोस्ट प्रकार 'minining_accidents' था और इससे जुड़ी कस्टम टैक्सोनॉमी 'दुर्घटना-प्रकार' थी, जिसके तहत कई शब्द थे। मेरा विचार इस कस्टम टैक्सोनॉमी में शर्तों के तहत पदों की सूची दिखाने के लिए एक कस्टम विजेट बनाने का था। मेरे ट्रायल रन में वह मिला जो मैं चाहता था। आराम फरमाया गया। यहाँ मेरा कोड है:
function fn_get_list_of_mining_accident_types()
{
$custom_taxonomy='accident-types';
$custom_terms = get_terms($custom_taxonomy);
$str_return='<ul>';
foreach($custom_terms as $custom_term)
{
wp_reset_query();
$args = array(
'post_type' => 'minining_accidents',
'tax_query' => array(
array(
'taxonomy' => $custom_taxonomy,
'field' => 'slug',
'terms' => $custom_term->slug,
),
),
);
$loop = new WP_Query($args);
$term_name=$custom_term->name;
$term_slug=$custom_term->slug;
$term_link=get_term_link($term_slug, $custom_taxonomy);
$str_return.='<li><a href="'.$term_link.'">'.$term_name.'</a>';
if($loop->have_posts())
{
$str_return.='<ol>';
while($loop->have_posts()) : $loop->the_post();
$str_return.='<li><a href="'.get_permalink().'">'.get_the_title().'</a></li> ';
endwhile;
$str_return.='</ol>';
}
$str_return.='</li>';
}
$str_return.='</ul>';
return $str_return;
}
हाँ! कोड को और बेहतर बनाने के लिए हमेशा एक विकल्प होता है।