我是插件开发的新手。我想获取特定页面/帖子的所有图像,并希望将它们显示为页面下方的幻灯片。目前我能够收集媒体库中的所有图像并显示它......但我如果该特定页面想要图像..我已经了解到要获取特定模板的图像,您需要在该特定帖子模板中添加代码行..但是如何使用插件来完成
$query_images_args = array(
'post_type' => 'attachment', 'post_mime_type' =>'image', 'post_status' => 'inherit', 'posts_per_page' => -1,
);
$query_images = new WP_Query( $query_images_args );
$images = array();
foreach ( $query_images->posts as $image) {
$images[]= wp_get_attachment_url( $image->ID );
}
foreach($images as $item){
/// any function not yet decided
}
echo($item);
我在 $item 中获取图像 url .. 我想更改图像属性并将原始图像替换为原始位置的经过处理的图像。