我不明白为什么只返回一个空白屏幕。
但是如果你回显$attachment->ID,你会得到一串ID号。
目标是制作一个带有wordpress[图库]快捷码的图库,其中包括所有帖子中的所有特色图片。
$args = array( \'posts_per_page\' => -1, \'offset\'=> 1, \'post_type\' => \'attachment\' );
$posts = get_posts( $args );
foreach ( $posts as $attachment ) {
do_shortcode(\'[gallery type="square" id="\'.$attachment->ID.\' ,"]\');
}
还有,它是哪一个:ID还是ID(codex显示了两者?!)使用ID或INCLUDE选择要使用的图像哪个更好?
注意:在默认的20-13和20-14主题中尝试了此操作,得到了相同的空白结果。