このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

Multi Image Upload

説明

This plugin adds a meta box to upload multiple images for posts and pages. You can enable it for custom post types also, please see installation instructions.

miu_get_images()

This function can be called from any template file to get attached images for the page/post being viewed.
It returns an array of the attached image URL.

It take only one argument:

  1. post_id (integer) to get images linked to a specific post

    http://www.example.com/image-1.png
    [1] => http://www.example.com/image-2.png
    )

    ?>

スクリーンショット

  • screenshot-1.png

インストール

  1. Upload plugin to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. To retrieve linked images Use miu_get_images() into the loop to get an array of image URLs
  4. Optional

If you need to enable this meta box for your custom post type for example ‘book’. Just edit the multi-image-upload.php as shown below

Replace:
$this->post_types = array(‘post’, ‘page’);
With:
$this->post_types = array(‘post’, ‘page’, ‘book’);

FAQ

Why should I use this plugin?

Use this plugin if you want to quickly add a feature to upload multiple images for a page, post or custom post type.

評価

2017年7月20日 1 reply
Plugin was superb and cleanly written code. Finally got the exact same thing , I was fed up because searching the net for getting the functionality like this. Good job Developers!!!
7件のレビューをすべて表示

貢献者と開発者

Multi Image Upload はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“Multi Image Upload” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

2.0

  • Old tb_show method replace with latest Media plugin
  • Image thumbnail updates as soon as you chose image
  • Links added on image thumbails that open the image in new tab
  • JQuery .live() replace with .on()

1.2

  • Compatibility issues with latest WP version fixed.
  • Image thumbnails displayed in admin meta box.

1.1

  • Bug fixes

1.0

  • First stable release.