Plugin / Page Meta

StvWhtly

Frequently Asked Questions (FAQ)

The field names used are _pagemeta_title, _pagemeta_description and _pagemeta_keywords. The underscore prefix prevents it from being displayed in the list of custom fields.
If a custom title is set for a post type, the plugin will automatically hook into the wp_title function to modify the output. This uses the parameters passed via wp_title and will completely override the title. You can customise the output further using the pagemeta_title filter, which uses the same parameters plus the original post title value. In this example we prefix the original title to the custom title. add_filter( 'pagemeta_title', function( $title, $sep, $seplocation, $original_title ) { return $original_title . $title; }, 10, 4 ); Please refer to the Codex for further information on the add_filter.
This plugin makes use of the wp_head hook action, therefore in order for it to work there must be a call to wp_head in the current theme header file. More information on this can be found in the WordPress Codex.
Yes, as of version 1.5 you can modify which fields are used using the pagemeta_fields filter: add_filter( 'pagemeta_fields', function( $fields ) { $fields['author'] = 'Author'; // Add a new field. unset( $fields['keywords'] ); // Remove a default field. return $fields; } ); The default fields are ‘title’, ‘description’ and ‘keywords’.
The page meta values can be output within posts using the [postmeta] shortcode. Passing through a name attribute will determine which value is returned, for example to output the description value use the following. [postmeta name="description"] Name values are determined by the fields set, by default these are ‘title’, ‘description’ and ‘keywords’. To output meta values in template files, you can make use of the_pagemeta function. This will output the value, in order to return the value or lookup a specific post ID you can use get_the_pagemeta. Not that these functions will return the raw values prior to any output manipulation.

Ratings

3.3
3 reviews

Rating breakdown

Details Information

Version

1.5.1

First Released

14 Oct, 2009

Total Downloads

29,312

Wordpress Version

2.8.2 or higher

Tested up to:

3.5.2

Require PHP Version:

-

Tags

Contributors

Languages

The plugin hasn't been transalated in any language other than English.

DIRECTORY DISCLAIMER

The information provided in this THEME/PLUGIN DIRECTORY is made available for information purposes only, and intended to serve as a resource to enable visitors to select a relevant theme or plugin. wpSocket gives no warranty of any kind, express or implied with regard to the information, including without limitation any warranty that the particular theme or plugin that you select is qualified on your situation.

The information in the individual theme or plugin displayed in the Directory is provided by the owners and contributors themselves. wpSocket gives no warranty as to the accuracy of the information and will not be liable to you for any loss or damage suffered by you as a consequence of your reliance on the information.

Links to respective sites are offered to assist in accessing additional information. The links may be outdated or broken. Connect to outside sites at your own risk. The Theme/Plugin Directory does not endorse the content or accuracy of any listing or external website.

While information is made available, no guarantee is given that the details provided are correct, complete or up-to-date.

wpSocket is not related to the theme or plugin, and also not responsible and expressly disclaims all liability for, damages of any kind, arising out of the use, reference to, or reliance on, any information or business listed throughout our site.

Keep Leading Your Followers!
Share it for them.