如何获取 Wordpress 附件分类数据

How to Get Wordpress Attachment Taxonomy Data

我使用下一页中的方法创建了一个名为 Location 的分类法。

http://code.tutsplus.com/articles/applying-categories-tags-and-custom-taxonomies-to-media-attachments--wp-32319

如何从名为 Location 的字段中获取数据及其值 return。请帮忙!谢谢

根据上面 URL 中给出的教程,考虑为媒体 'location' 注册分类法名称 section.Below 代码将有助于从字段位置

获取数据
$tax_terms = get_terms('location', array('hide_empty' => false));
foreach($tax_terms as $term)
{
    $termcat  = $term->term_id;
    $term->name;
    $post = get_posts(array(
    'post_type' => 'attachment',
    'tax_query' => array(
    array(
    'taxonomy' => 'location',
    'field' => 'term_id',
    'terms' => $termcat)
    ))
    );

    foreach ($post as $mypost) 
    {
        echo $mypost->post_title . '<br/>';
        echo $mypost->post_content . '<br/>';
        echo  $mypost->ID . '<br/><br/>';
        echo  $mypost->ID . '<img src="'.$mypost->guid.'" width="150" height="150" />';
    }
}