Plugin Directory

Meta Functions Shortcode

Extending the Shortcode

Method 1: Hardcoded

You can extend the plugin by adding the PHP function

function meta_functions_shortcode_{func}($meta, $alt="") {
       return "your desired text or generated html content";
}

by writing your own plugin file with the function in it. Be sure to replace {func} with your desired function name (will result in the parameter “func” in the shortcode). $meta will be the value of the custom field and $alt the “alt” parameter.

The function should return the text by which the shortcode will be replaced. For example the “_plain” function simply returns $meta or $alt if $meta is empty.

Method 2: In the admin panel

This method is more convenient. You can add new functions in the admin panel. For this go to the options page called "Meta Functions Shortcode". Here you can enter a new function name, specify parameter names and set the output html code with the parameters.

Example:

  • Function Name: link
  • Function Parameter Names: linkurl, linkcaption
  • Function Result Code: <a href='{link_url}'>{link_caption}</a>

If you now enter the shortcode [meta func="link" linkurl="downloadurl" linkcaption="downloadcaption"] then in the article/page it will be replaced by <a href='contents of custom field download_url'><i>contents of custom field download_caption</i></a>.

Download

FYI

Compatibility beta

Your Setup

Log in to vote.

The Consensus

No data

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(0 ratings)