0

我需要安装一个我发现的插件,但解释不好。

目标是在 wordpress 插件中使用多个类别。

它告诉我使用此代码来显示它:

<?php
if ( function_exists( 'get_slidervilla_slider_taxonomy' ) ){ get_slidervilla_slider_taxonomy('slider=roster&taxonomy=category&term=uncategorized&set=1');
}
?>

但是,如果我想使用多个类别,我必须添加:

'term' => array( 'social-media', 'news' )

但我不知道如何或在哪里?

谢谢

4

2 回答 2

1

您可以简单地在名称之间放置一个逗号。

<?php
if ( function_exists( 'get_slidervilla_slider_taxonomy' ) ){ get_slidervilla_slider_taxonomy('slider=roster&taxonomy=category&term=social-media,news&set=1');
}
?>

谢谢。

于 2013-11-08T05:25:05.503 回答
0

您可以执行以下操作:

if ( function_exists( 'get_slidervilla_slider_taxonomy' ) ) {
    $term = array( 'social-media', 'news' );
    $args=array(
         'slider'=>'thumbel',
         'post_type'=>'post', 
         'taxonomy'=>'category',
         'term'=> $term, //pass in the $term array
         'set'=>'', 
         'offset'=>0 
    );
    get_slidervilla_slider_taxonomy($args);
}
于 2013-11-08T04:04:34.207 回答