Plugin info

Total downloads: 1,620
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 12/8/2015 (3676 days ago)
Added to WordPress: 5/20/2014 (11 years old)
Minimum WordPress version: 3.0.0
Tested up to WordPress version: 4.4.0
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3676 days ago

20/100

Is Meta Fetcher abandoned?

Possibly abandoned (last update 3676 days ago).

Compatibility

Requires WordPress: 3.0.0
Tested up to: 4.4.0
Requires PHP: f

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Get Custom Field Values
Rating 5.0/5 (4 reviews)Active installs 1,000
WHWS Display User Meta Shortcode
Rating 5.0/5 (4 reviews)Active installs 500
Meta Content
Rating 5.0/5 (2 reviews)Active installs 200
Image Browser
Rating 0.0/5 (0 reviews)Active installs 10
Citation Manager
Rating 0.0/5 (0 reviews)Active installs 10
Meta Functions Shortcode
Rating 0.0/5 (0 reviews)Active installs 10

Description

This plugin provides a simple [meta] shortcode that allows you to fetch meta information for the current $post.
There are options to return a single value, multiple values joined by a user defined string, or a JSON string.

Examples:

[meta name="your_meta_field"]

This will return the value of “your_meta_field”. If the value is an array, it will return a comma separated list, unless you specify an alternative join string.

[meta name="your_meta_field" single="false"]

By default, [meta] will return a single value. If you have multiple meta fields with the same name, you can get them all by setting single=”false”.

[meta name="your_meta_field" single="false" json="true"]

This will return the JSON encoded value of “your_meta_field”.

[meta name="your_meta_field" single="false" join="|"]

This will return a pipe separated values of “your_meta_field”.

[meta name="your_meta_field" shortcode="false"]

By default, the value will be passed to do_shortcode, unless you turn if off.

[meta name="your_meta_field" filters="true"]

There are a couple filters available if you want to filter the value. They are called after do_shortcode and before any JSON/array handling.
They are on be default, but can be turned of with filters=”false”. The filters are “meta_fetcher_value” and “meta_fetcher_{$name}”.

Installation

  1. Upload meta-fetcher folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Add shortcode to your content: [meta name="some_name_here" default="some default content"]

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

0.4

  • Added option to return a JSON string.
  • Added options for handling array meta values.

0.3

  • Added better checking for argument values.

0.2

  • Added additional arguments.

0.1

  • Initial build