WordPress图库快捷码上的媒体类别

时间:2016-08-30 作者:Bluestocking

使用Enhanced Media Library 插件中,我添加了自定义媒体类别,现在正尝试将这些类别作为类应用于[库]快捷代码中显示的图像。这是我正在使用的代码(在自定义[库]快捷码中):

        $terms = get_terms(\'media_category\', array(\'parent\' => \'15\'));

        foreach ( $terms as $id => $term ) {
            $term = $term->slug;
        }
这段代码将类别名称作为类输出,但是它仅将库中第一幅图像的类别应用于其他每幅图像,而忽略其他图像的类别。

因为我已经注册Isotope, 我还使用媒体类别对库进行排序。此代码工作正常:

$terms = get_terms(\'media_category\', array(\'parent\' => \'15\'));
      $count = count($terms);
           if ( $count > 0 ){
               foreach ( $terms as $term ) {
                  echo "<button type=\'button\' class=\'btn\'  data-hover=\'" . $term->name . "\' data-filter=\'." . $term->slug . "\'>" . $term->name . "</button>\\n";
               }
            }
我在第一段代码中遗漏了什么?

1 个回复
最合适的回答,由SO网友:Bluestocking 整理而成

好吧,我知道我做错了什么。

我最初尝试的是foreach 然后将库输出置于其下方。我还试着包装foreach 围绕整个库输出。

为了让它工作,我需要把foreach 围绕gallery快捷码中itemtag的输出:

        $terms = wp_get_post_terms( $id, \'media_category\', array( \'fields\' => \'all\' ) );

    $output .= "<{$itemtag} class=\'gallery-item {$orientation}";

    foreach ( $terms as $term ) {
        if ($term->parent != 0) {
        $term = $term->slug;

            $output .= " {$term}";

        }
    }

    $output .= "\' itemprop=\'associatedMedia\' itemscope itemtype=\'http://schema.org/ImageObject\'>";

相关推荐

WP_DROPDOWN_CATEGORIES和自定义分类+自定义帖子类型

我已经创建了名为“的自定义帖子类型”;案例研究;(使用slug案例研究),支持自定义分类法,称为;主题;。我正在努力实现什么?简单的下拉列表,在选项选择上重定向到特定的分类术语页面。代码:<form id="category-select" class="category-select" action="<?php bloginfo(\'url\'); ?>" method="get&quo