按变量查询类别名称

时间:2016-08-21 作者:Luca Conocchia

我有这部分代码,我想替换name-category 在带有我的变量的查询部分$nisola. 这是正确的代码谢谢

<?php $nisola = get_post_meta($post->ID, \'isola\', true); ?>
<?php
$post_categoria = new WP_Query(\'category_name=name-category\');
while($post_categoria->have_posts()) : $post_categoria->the_post();

1 个回复
SO网友:Ionut Staicu

您似乎错过了一些PHP基础知识?http://php.net/manual/en/language.operators.string.php

无论如何

$post_categoria = new WP_Query(\'category_name=name-category\');
应该变成这样:

$post_categoria = new WP_Query(\'category_name=\' . $nisola);