我有一个脚本,按id显示帖子,并从数组中id发布我的代码:
if ( have_posts() ) : while ( have_posts() ) : the_post();
$f = cherry_get_option(\'blog-featured-post\',false);
foreach ($f as $fs ) {
$q = new WP_Query( array(
\'post__in\' => array($fs),
\'orderby\' => \'date\',
\'order\' => \'asc\'
) );}
if ( $q->have_posts() ) : while ( $q->have_posts() ) : $q->the_post();
//show post
the_title();
endwhile; endif;
endwhile; else:
echo "no post found";
endif;
wp_reset_query();
不,从那个密码
$fs
将输出id张贴将显示的内容,我正在尝试
vardump($fs)
工作正常(输出为
string(4) "1254" string(4) "1310"
) 但在
post_in
只有第一个id可以读取(
string(4) "1254"
) 我不知道我的代码发生了什么,如果有人能帮忙,我会很高兴的