如何组合这个php语句来获取多个变量输入的结果?

时间:2011-04-30 21:06:11

标签: php mysql wordpress

这是我的WordPress查询,但不是与wordpress相关的问题。它将meta_key的帖子显示为 extra1 ,将meta_value显示为 test

<?php $customkey1 = extra1; ?>
<?php $customvalue1 = test; ?>
<?php query_posts('meta_key=' . $customkey1 . '&meta_value=' . $customvalue1 . '');  ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

<?php the_title(); ?>

<?php endwhile; ?>
<?php endif; ?>

我的问题是,我如何仍然将extra1作为元关键字和test作为元评价的帖子,以及将extra2作为元字符和test2的帖子显示为同一查询中的metavalue。两个或多个变量的组合。

1 个答案:

答案 0 :(得分:0)

所以你想要结合两个查询的结果? Check this out您可能只需要创建两个查询对象并将它们组合起来。

类似的东西(注意,我没有安装WordPress,也没有使用WordPress。但假设它的API不是谎言):

<?php

// The Query
$the_query = new WP_Query( $args );
$the_second_query = new WP_Query( $args );

// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
    echo '<li>';
    the_title();
    echo '</li>';
endwhile;

// The Second Loop
while ( $the_second_query->have_posts() ) : $the_second_query->the_post();
    echo '<li>';
    the_title();
    echo '</li>';
endwhile;

// Reset Post Data
wp_reset_postdata();
?>

注意:这是丑陋的,丑陋的,并且会起作用,但在大多数情况下应该被专业人士认为是错误的。更优雅的是,至少我会使用一个函数来解析帖子。最优雅的是,我会做其他地方建议的事情,将组合查询封装在MySQL位中。但考虑到操作的知识,这似乎是快速解决这个问题的“最佳方法”,希望只有一次。 (反复应用这种方法会把它变成一个混乱的噩梦)