我正在创建一个wordpress插件,我想让用户使用媒体库中的图像。例如:主题配置的»header«部分中的»Choose Image«按钮正是我正在寻找的。 p>
我可以调用生成这样一个按钮的wordpress方法吗?
问候菲律宾
答案 0 :(得分:1)
你试图完成的目标尚不清楚, 使用所有图像是一回事,让他们选择使用wordpress uploader是一回事。
不推荐给他们最后一个选项,因为他们可能无法控制地滥用你的系统。
要查看所有可以使用此功能的图像,请返回一个数组:
function get_all_images(){
$args = array(
'post_type' => 'attachment',
'post_mime_type' =>'image',
'post_status' => 'inherit',
'posts_per_page' => -1,
);
$query = new WP_Query( $args );
$images = array();
foreach ( $query->posts as $image) {
$images[]= wp_get_attachment_url($image->ID);
}
return $images;
}