這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

Attach Post Images

描述

Unlike the traditional way of attaching images (or attachments) to posts by inserting them in the post content, this plugin allows you to attach images to posts in a manner
that lets you control the way the images are later displayed in your theme.

It adds a metabox to the edit screen that lets you select/upload images (similar to the “Featured Image” metabox).

The images attached to a post can then later be gotten by the following means:

  • If you are in a WordPress loop then you can use the tag twp_the_post_images($size).
    $size (string|array) is an optional parameter (defaults to ‘thumbnail‘) and can take values similar to the wp_get_attachment_image_src function.

This will return an array of objects where each object contains information about an image.

  • You can directly call the plugin function twp_get_post_images($post_id, $size).

$post_id (int): required – the ID of the post.

$size (string|array): is an optional parameter (defaults to ‘thumbnail‘) and can take values similar to the wp_get_attachment_image_src function.

This will return an array of objects where each object contains information about an image.

  • If you want to display the images directly as an unordered list, then you can use the shortcode [twp_post_images id=post_id size=some_size].
    The parameters of this shortcode are same as those of the above functions.
    You will need some CSS knowledge to style the returned unordered list properly.

The functions twp_the_post_images() and twp_get_post_images() return an empty array if no images were found or an array of objects where each object has the following attributes:

  • id: the attachment id
  • width: The width of the image
  • height: The height of the image
  • orientation: The orientation of the image (landscape|protrait)
  • url: The url of the image
  • is_original: (boolean) false if $url is a resized image, true if it is the original.

NOTE THAT YOU HAVE TO SAVE/UPDATE YOUR POST EACH TIME YOU MODIFY THE IMAGE SELECTION

螢幕截圖

  • Metabox on the right of the edit screen with no images selected
  • Metabox showing selected images

安裝

Steps to install this plugin.

  1. In the downloaded zip file, there is a folder with name ‘attach-post-images’
  2. Upload the ‘attach-post-images’ folder to the ‘/wp-content/plugins/’ directory
  3. Activate the plugin through the ‘Plugins’ menu in WordPress
  4. Read the usage instructions in the description.

常見問題

How do I attach images to a post?

First ensure the plugin is enabled. On the editor screen, there is a meta box on the right with link “Attach Images”. This launches the WordPress media manager, where you can select existing images or upload new images.

How do I get attached images?

In a WP loop, you can do $images = twp_the_post_images();

Or you can call the plugin function $images = twp_get_post_images($post_id). See plugin description for return values.

評價

There are no reviews for this plugin.

貢獻者及開發者

“Attach Post Images” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

將 Attach Post Images 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

修改日誌

1.0

  • Initial version of plugin