是的,这绝对是可能的:我在我的一个主题中这样做。
您只需将图像添加到帖子中,就好像您要将其插入帖子一样,但只需单击“保存所有更改”,而不是实际单击“插入帖子”按钮。
然后,您可以使用以下内容访问该帖子的图库图像:
$images = get_gallery_images();
我在函数中定义了这个函数。php:
// get all of the images attached to the current post
function get_gallery_images() {
global $post;
$photos = get_children( array(\'post_parent\' => $post->ID, \'post_status\' => \'inherit\', \'post_type\' => \'attachment\', \'post_mime_type\' => \'image\', \'order\' => \'ASC\', \'orderby\' => \'menu_order ID\') );
$galleryimages = array();
if ($photos) {
foreach ($photos as $photo) {
// get the correct image html for the selected size
$galleryimages[] = wp_get_attachment_url($photo->ID);
}
}
return $galleryimages;
}
然后对模板文件中的图像执行任何操作。(在我的例子中,我循环浏览图像并将它们放在jQuery滑块中)。
也有你可以使用的插件,但如果你能帮助的话,最好尽量减少插件。