嗨,奇普,不幸的是,这不起作用,但经过数小时的搜索,我终于找到了它。
首先,您必须将以下代码添加到函数中。php文件
function show_all_thumbs() {
global $post;
$post = get_post($post);
/* image code */
$images =& get_children( \'post_type=attachment&post_mime_type=image&output=ARRAY_N&orderby=menu_order&order=ASC&post_parent=\'.$post->post_parent);
if($images){
foreach( $images as $imageID => $imagePost ){
unset($the_b_img);
$the_b_img = wp_get_attachment_image($imageID, \'thumbnail\', false);
$thumblist .= \'<a href="\'.get_attachment_link($imageID).\'">\'.$the_b_img.\'</a>\';
}
}
return $thumblist;
}
然后将以下代码添加到要显示缩略图的位置。
<?php echo show_all_thumbs();?>
抱歉,我不知道如何将整个代码放入框中,所以我不得不塞满每一行:(