0

我已经为 Wordpress TinyMCE 编辑器编写了一个插件,我想使用之前在该插件中上传到媒体库的图像。如何在我自己的插件中访问所有上传的图片?我在 wordpress 文档中找不到它。

谢谢。

4

1 回答 1

1

我对你的问题有点不清楚。您是否正在寻找访问“添加媒体”按钮的方法?

试图回答您的问题 - >此方法允许您获取媒体部分中的所有附件。目前它显示所有内容,但您可以按照您想要的方式操作它。

参考:http ://codex.wordpress.org/Template_Tags/get_posts

$args = array( 'post_type' => 'attachment', 'numberposts' => -1); 
$attachments = get_posts($args);
if ($attachments) {
    foreach ( $attachments as $attachment ) {
        echo apply_filters( 'the_title' , $attachment->post_title );
        the_attachment_link( $attachment->ID , false );
    }
}
于 2013-03-01T20:49:29.563 回答