您好,我正在尝试将来自某个分类术语的帖子添加到cpt循环中。下面的代码是我正在使用的代码。
<?php // Create empty array to store post ids in
$excludes = array();
$args=array(
\'post_type\' => array (\'gallery\',\'videos\'),
\'taxonomy\'=>\'series\',
\'term\' => \'pretty-little-liars\',
\'post_status\' => \'publish\',
);
$my_query = new WP_Query( $args );
if ($my_query->have_posts()) : while($my_query->have_posts()) : $my_query->the_post(); ?>
但代码的问题是,我所有的帖子现在都不见了。然后我了解到我需要添加第二个循环。好的,那么在阅读之后
WP_Query我试图添加第二个循环,但它给了我一个错误,下面是我用于此的代码
<?php // Create empty array to store post ids in
$excludes = array();
$args=array(
\'post_type\' => array (\'gallery\',\'videos\'),
\'taxonomy\'=>\'series\',
\'term\' => \'pretty-little-liars\',
\'post_status\' => \'publish\',
);
$my_query = new WP_Query( $args );
if ($my_query->have_posts()) : while($my_query->have_posts()) : $my_query->the_post();
// Restore original Query & Post Data
wp_reset_query();
wp_reset_postdata();
/* The 2nd Query (without global var) */
$query2 = new WP_Query( $args2 );
// The 2nd Loop
if ($query2->have_posts()) : while($query2->have_posts()) : $query2->the_post();
// Restore original Query & Post Data
wp_reset_query();
wp_reset_postdata();
?>
它给了我这个错误
分析错误:语法错误,意外的$end in/hermes/bosweb/web188/b1885/ipg。celebloidcom1/tvcafe/wp内容/主题/tvcafe/archive小骗子。php在线258
我做错了什么,有人能帮我解决这个问题吗。我不打算在我的循环中使用一个单独的结构,而是更倾向于一个共同的结构。
例如,我不希望第一个循环在顶部,第二个循环在底部。我想把它们组合成一个环。
如果你需要更多信息或想看到我的整个php,请让我知道。