如何在查询参数中插入变量?

时间:2014-01-06 作者:Vinícius Barcelos

我需要在查询参数中放入一个变量。

我有这样的情况:

$variable = get_field(loop_category);

$catquery = new WP_Query( \'category_name=***VARIABLE-HERE***\');
while($catquery->have_posts()) : $catquery->the_post();
我该怎么做?

1 个回复
SO网友:tfrommen

呃,你是在说这个吗:

$variable = get_field(\'loop_category\');
$args = array(
    \'category_name\' => $variable,
);
$catquery = new WP_Query($args);
while ($catquery->have_posts()) {
    $catquery->the_post();

    // Do your thing

}
如果是这样的话,这就是基本的PHP,与WordPress没有任何关系,即使这是在其上下文中使用的。

结束