在现有函数中集成数组

时间:2013-11-08 03:46:31

标签: php wordpress

我需要安装一个我找到的插件,但说明并不好。

目标是在wordpress插件中使用多个catégories。

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

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

但如果我想使用多个catégories,我必须添加:

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

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

由于

2 个答案:

答案 0 :(得分:1)

您可以在名称之间添加逗号。

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

感谢。

答案 1 :(得分: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);
}