我需要安装一个我找到的插件,但说明并不好。
目标是在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' )
但我不知道如何或在哪里?
由于
答案 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);
}