从wordpress画廊获取图像目录,名称,ID

时间:2015-08-13 03:39:48

标签: php jquery wordpress

我是wordpress的新手,我还在研究wp并制作一个插件。在该插件的1页中,我插入了添加媒体按钮来上传图像,我想获取该图像目录,名称和ID用于其他目的。

这是我的代码:

<td>
    <div id="wp-content-media-buttons" class="wp-media-buttons">
        <a href="#" class="button insert-media add_media" data-editor="content" title="Add Media" id="upload-img">
            <span class="wp-media-buttons-icon"></span> Add Image
        </a>
    </div>
    <input id="img_name" class="img_info" name="img_name" type="text" value="Show image name here" /><br/>
    <input id="img_dir" class="img_info" name="img_dir" type="text" value="Show image directory here" /><br/>
    <input id="img_id" class="img_info" name="img_id" type="text" value="Show image id here" />
</td>

我想在上传/选择图片后立即在输入栏中显示图片目录,目录和ID。反正有吗?

0 个答案:

没有答案