P
by Steve
3.3 (3 reviews)
Page Meta
Adds the ability to override the page meta title and add in meta descriptions and keywords for pages.
Tested up to WP 3.5 (Current: 7.0.2)
v1.5.1
Current Version v1.5.1
Updated 13 years ago
Last Update on 19 Mar, 2013
Refreshed 16 hours ago
Last Refreshed on
Rank
#7,789
+1 this week
Active Installs
700+
-12.5%
KW Avg Position
N/A
—
No change
Downloads
32K
+2 today
Support Resolved
0%
—
No change
Rating
66%
Review 3.3 out of 5
3.3
(3 reviews)
Next Milestone 800
700+
800+
46
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 7 more installs to reach 800+
Rank Changes
Current
#7,789
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
3.3
3 reviews
Overall
66%
5
1
(33%)
4
1
(33%)
3
0
(0%)
2
0
(0%)
1
1
(33%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.5.1
- Last Updated
- Mar 19, 2013
- Requires WP
- 2.8.2+
- Tested Up To
- 3.5
- PHP Version
- N/A
- Author
- Steve
Support & Rating
- Rating
- ★ ★ ★ ☆ ☆ 3.3
- Reviews
- 3
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Adminify – White Label, Admin Menu Editor, Login Customizer
7K+ installs
#2,730
Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder & Template Kits
30K+ installs
#988
Yoast SEO - Advanced SEO with real-time guidance and built-in AI
10M+ installs
#2
Rank Math SEO – AI SEO Tools to Dominate SEO Rankings
4M+ installs
#13
All in One SEO – AI SEO Plugin to Boost SEO Rankings & Traffic (Schema, Local SEO, Sitemap & SEO Insights)
3M+ installs
#21
Frequently Asked Questions
Common questions about Page Meta
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. <?php if ( function_exists( 'the_pagemeta' ) ) { the_pagemeta( 'description' ); } ?> This will output the value, in order to return the value or lookup a specific post ID you can use get_the_pagemeta. <?php if ( function_exists( 'get_the_pagemeta' ) ) { $description = get_the_pagemeta( 'description' ); } ?> <?php if ( function_exists( 'get_the_pagemeta' ) ) { $description = get_the_pagemeta( 'description', // Page meta value name 123 // Post ID to lookup ); } ?> Not that these functions will return the raw values prior to any output manipulation.