我是插件开发的新手。我想获取特定页面/帖子的所有图像,并希望在页面下方以幻灯片形式显示它们。目前,我能够收集媒体库中的所有图像并显示它。 。但我想要图像,如果那个特定的页面..我已经知道要获得特定模板的图像你需要在该特定的帖子模板中添加代码行。但是如何使用插件来完成
$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中获取图片网址 我想更改图像属性,并在原始位置用我的操作图像替换原始图像。