Wordpress中的变量内部数组

时间:2014-07-06 17:35:54

标签: php arrays wordpress variables

我在使用Wordpress中的一些代码时遇到了一些问题。

<?php
$output="";
foreach($type2 as $t) {$output.= "'".$t->slug."',"; }
echo $output;
?>

此代码输出:

'cocinas','banos-y-spa','mobiliario-de-hogar',

当我想使用$ output将它放入数组时,问题出现了:

<?php
if(is_tax( 'type', array ($output))) {
putRevSlider(get_queried_object()->slug);}
?>

奇怪的是,这个确实没用,虽然它没用,因为我需要它是动态的:

<?php
if(is_tax( 'type', array ('cocinas','banos-y-spa','mobiliario-de-hogar',))) {
putRevSlider(get_queried_object()->slug);}
?>

如果数组中的$ output具有相同的值,为什么不在数组内工作?

1 个答案:

答案 0 :(得分:1)

为什么要将数组内容转换为字符串。

无论如何,将$type2转换为您要查找的格式:

<?php
$output=array();
foreach($type2 as $t) {
    $output[] =  $t->slug;
}
?>

这将为您提供适当的数组,您可以直接在is_tax()函数中使用。

<?php
if(is_tax( 'type', $output)) {
putRevSlider(get_queried_object()->slug);}
?>