Title: JSM Adobe XMP / IPTC for WordPress
Author: JS Morisset
Published: <strong>Abril 10, 2013</strong>
Last modified: Marso 25, 2026

---

Search plugins

![](https://ps.w.org/adobe-xmp-for-wp/assets/banner-772x250.jpg?rev=3312264)

![](https://ps.w.org/adobe-xmp-for-wp/assets/icon-256x256.jpg?rev=2396815)

# JSM Adobe XMP / IPTC for WordPress

 By [JS Morisset](https://profiles.wordpress.org/jsmoriss/)

[Download](https://downloads.wordpress.org/plugin/adobe-xmp-for-wp.1.6.0.zip)

 * [Details](https://ceb.wordpress.org/plugins/adobe-xmp-for-wp/#description)
 * [Reviews](https://ceb.wordpress.org/plugins/adobe-xmp-for-wp/#reviews)
 *  [Installation](https://ceb.wordpress.org/plugins/adobe-xmp-for-wp/#installation)
 * [Development](https://ceb.wordpress.org/plugins/adobe-xmp-for-wp/#developers)

 [Support](https://wordpress.org/support/plugin/adobe-xmp-for-wp/)

## Description

Retrieve the following Adobe XMP / IPTC information from images in the WordPress
Media Library and NextGEN Galleries:

 * Creator Email
 * Owner Name
 * Creation Date
 * Modification Date
 * Label
 * Credit
 * Gikanan
 * Headline
 * City
 * State
 * Country
 * Country Code
 * Location
 * Titulo
 * Deskripsiyon
 * Creator
 * Rights
 * Keyboards
 * Hierarchical Keywords

The extracted XMP / IPTC data is cached on disk to improve performance and is refreshed
if / when the original image is modified.

You can use the plugin in one of two ways; calling a method in your theme template(
s) or using the `[xmp]` shortcode in your content.

There are no plugin settings – simply install and activate the plugin.

## Installation

#### Automated Install

 1. Go to the wp-admin/ section of your website.
 2. Select the _Plugins_ menu item.
 3. Select the _Add New_ sub-menu item.
 4. In the _Search_ box, enter the plugin name.
 5. Click the _Search Plugins_ button.
 6. Click the _Install Now_ link for the plugin.
 7. Click the _Activate Plugin_ link.

#### Semi-Automated Install

 1.  Download the plugin ZIP file.
 2.  Go to the wp-admin/ section of your website.
 3.  Select the _Plugins_ menu item.
 4.  Select the _Add New_ sub-menu item.
 5.  Click on _Upload_ link (just under the Install Plugins page title).
 6.  Click the _Browse…_ button.
 7.  Navigate your local folders / directories and choose the ZIP file you downloaded
     previously.
 8.  Click on the _Install Now_ button.
 9.  Click the _Activate Plugin_ link.

## FAQ

### How do I retrieve XMP data as an array?

    ```
    my $adobeXMP =& adobeXMPforWP::get_instance();

    my $xmp = $adobeXMP->get_xmp( $image_id );

    echo '<p>Photograph by ' . $xmp[ 'Creator' ] . '</p>';
    ```

### How do I include a shortcode in a post or page?

    ```
    [xmp id="101,ngg-201"]
    ```

This shortcode prints all the XMP information for Media Library image ID “101” and
NextGEN Gallery image ID “201”. The XMP information is printed as a definition list
<dl> with a CSS class name of “xmp_shortcode” that you can style for your needs.
Each <dt> and <dd> element also has a style corresponding to it’s title – for example,
the “Creator” list element has an “xmp_creator” CSS class name. Here’s an example
of the definition list HTML:

    ```
    <dl class="xmp_shortcode">
    <dt class="xmp_credit">Credit</dt>
    <dd class="xmp_credit">JS Morisset</dd>
    <dt class="xmp_source">Source</dt>
    <dd class="xmp_source">Underwater Focus</dd>
    <dt class="xmp_hierarchical_keywords">Hierarchical Keywords</dt>
    <dd class="xmp_hierarchical_keywords">What > Photography > Field of View > Wide-Angle > Fish-Eye</dd>
    </dl>
    ```

The shortcode can also take a few additional arguments:

 * `include` (defaults to “all”)

Define which XMP elements to include, for example:

    ```
    [xmp id="101" include="creator,creator email"]
    ```

 * `exclude` (defaults to none)

Exclude some XMP elements, for example to print all XMP elements, except for the“
creator email”:

    ```
    [xmp id="101" exclude="creator email"]
    ```

 * `show_title` (defaults to “yes”)

Include / exclude the <dt> definition titles.

    ```
    [xmp id="101" show_title="no"]
    ```

 * `show_empty` (defaults to “no”)

Include / exclude empty <dd> definition values.

 * `not_keyword` (defaults to none)

Exclude a list of (case incensitive) keywords, for example:

    ```
    [xmp id="101" not_keyword="who,what,where"]
    ```

To exclude a hierarchical keyword list, use hyphens between the keywords, for example:

    ```
    [xmp id="101" not_keyword="who,what,where,who-people-unknown"]
    ```

## Reviews

![](https://secure.gravatar.com/avatar/1de2cee86ecaf7cf1b797071f80b781265e7ccdcbb1675edff99b723375b9b09?
s=60&d=retro&r=g)

### 󠀁[Very Useful](https://wordpress.org/support/topic/very-useful-1035/)󠁿

 [cuteantonyraj](https://profiles.wordpress.org/cuteantonyraj/) Disyembre 15, 2016

Very Useful For Developers

 [ Read all 2 reviews ](https://wordpress.org/support/plugin/adobe-xmp-for-wp/reviews/)

## Contributors & Developers

“JSM Adobe XMP / IPTC for WordPress” is open source software. The following people
have contributed to this plugin.

Contributors

 *   [ JS Morisset ](https://profiles.wordpress.org/jsmoriss/)

“JSM Adobe XMP / IPTC for WordPress” has been translated into 3 locales. Thank you
to [the translators](https://translate.wordpress.org/projects/wp-plugins/adobe-xmp-for-wp/contributors)
for their contributions.

[Translate “JSM Adobe XMP / IPTC for WordPress” into your language.](https://translate.wordpress.org/projects/wp-plugins/adobe-xmp-for-wp)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/adobe-xmp-for-wp/),
check out the [SVN repository](https://plugins.svn.wordpress.org/adobe-xmp-for-wp/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/adobe-xmp-for-wp/)
by [RSS](https://plugins.trac.wordpress.org/log/adobe-xmp-for-wp/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

### Version Numbering

Version components: `{major}.{minor}.{bugfix}[-{stage}.{level}]`

 * {major} = Major structural code changes and/or incompatible API changes (ie. 
   breaking changes).
 * {minor} = New functionality was added or improved in a backwards-compatible manner.
 * {bugfix} = Backwards-compatible bug fixes or small improvements.
 * {stage}.{level} = Pre-production release: dev < a (alpha) < b (beta) < rc (release
   candidate).

### Repositories

 * [GitHub](https://jsmoriss.github.io/adobe-xmp-for-wp/)
 * [WordPress.org](https://plugins.trac.wordpress.org/browser/adobe-xmp-for-wp/)

### Changelog / Release Notes

**Version 1.6.0 (2020/11/21)**

 * **New Features**
    - None.
 * **Improvements**
    - Added support for the copyright <dc:rights></dc:rights> tag.
 * **Bugfixes**
    - None.
 * **Developer Notes**
    - None.
 * **Requires At Least**
    - PHP v7.4.33.
    - WordPress v6.0.

## Meta

 *  Version **1.6.0**
 *  Last updated **4 Semana ago**
 *  Active installations **70+**
 *  WordPress version ** 6.0 or higher **
 *  Tested up to **6.9.4**
 *  PHP version ** 7.4.33 or higher **
 *  Languages
 * [English (US)](https://wordpress.org/plugins/adobe-xmp-for-wp/), [French (Belgium)](https://fr-be.wordpress.org/plugins/adobe-xmp-for-wp/),
   [French (Canada)](https://fr-ca.wordpress.org/plugins/adobe-xmp-for-wp/), and
   [French (France)](https://fr.wordpress.org/plugins/adobe-xmp-for-wp/).
 *  [Translate into your language](https://translate.wordpress.org/projects/wp-plugins/adobe-xmp-for-wp)
 * Tags
 * [iptc](https://ceb.wordpress.org/plugins/tags/iptc/)[photoshop](https://ceb.wordpress.org/plugins/tags/photoshop/)
   [rdf](https://ceb.wordpress.org/plugins/tags/rdf/)[xml](https://ceb.wordpress.org/plugins/tags/xml/)
   [xmp](https://ceb.wordpress.org/plugins/tags/xmp/)
 *  [Advanced View](https://ceb.wordpress.org/plugins/adobe-xmp-for-wp/advanced/)

## Ratings

 5 out of 5 stars.

 *  [  2 5-star reviews     ](https://wordpress.org/support/plugin/adobe-xmp-for-wp/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/adobe-xmp-for-wp/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/adobe-xmp-for-wp/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/adobe-xmp-for-wp/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/adobe-xmp-for-wp/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/adobe-xmp-for-wp/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/adobe-xmp-for-wp/reviews/)

## Contributors

 *   [ JS Morisset ](https://profiles.wordpress.org/jsmoriss/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/adobe-xmp-for-wp/)