我如何才能让Taxonomy Images与‘orderby’参数一起工作?

时间:2012-09-03 作者:robalan

我正在使用分类法图像插件,并试图对分类法进行排序,但分类法图像效果不佳。这项工作:

$terms = get_terms( \'work_cat\', $args );
但事实并非如此:

$terms = apply_filters( \'taxonomy-images-get-terms\', \'\', $args );
有什么想法吗?以下是完整的查询:

<?php
    $args = array(
        \'taxonomy\'     => \'work_cat\',
        \'orderby\'      => \'id\',
        \'order\'        => \'ASC\',
        \'hierarchical\' => 1,
    );

    $terms = apply_filters( \'taxonomy-images-get-terms\', \'\', $args );

    $i = 0;
    $len = count($categories);
    foreach ($terms as $term) {
    ?>
        <div class="fourcol <?php if ($i == 0): ?> first<?php elseif ($i == $len - 1): ?> last<?php endif; ?>">
        <a href="<?php echo get_term_link($term->slug, \'work_cat\'); ?>"><?php echo wp_get_attachment_image( $term->image_id, \'full\' ); ?></a>
        <h2><?php echo $term->name; ?></h2>
        <p><?php echo $term->description; ?></p>
        <a href="<?php echo get_term_link($term->slug, \'work_cat\'); ?>">See More &raquo;</a></div>

    <?php $i++;
    }
?>
原职务:http://wordpress.org/support/topic/plugin-taxonomy-images-doesnt-adhere-to-orderby-argument

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

尝试以下操作:在$args中,保留“taxonomy”,并将其余三个参数放在“term\\u args”子数组中。

根据文档,筛选器似乎通过“term\\u args”子数组传递参数以获取\\u terms()。您的$args数组在同一级别混合了filter参数和get\\u terms()参数,看起来这不应该起作用。

我没有测试过这个,但值得一试。

http://wordpress.org/extend/plugins/taxonomy-images/

祝你好运!

E

结束

相关推荐

Ajax post filter by taxonomy

我想让一个过滤器宽度超过一个tanonomy width ajax和jquery,我想编写的演示是:http://gycweb.org/resources/我尝试使用此演示编写代码:http://dinhkk.com/demo/ajaxfilter/问题是我可以同时从右侧边栏上的两个菜单向ajax数据发送信息有谁能帮我解决这个问题吗??