Description
This plugin uses custom fields to allow the page title tag to be different from the actual page title.
Both meta descriptions and keywords can also be added to pages.
Screenshots
Installation
- Upload the
seonuinu
folder to the/wp-content/plugins/
directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Place
<?php meta_title(); ?>
with<?php if (function_exists('meta_title')) { meta_title(); } else { wp_title(); } ?>
in your header template.
SEO nuinu can be disabled for posts by unchecking the Enable for posts as well as pages.
option on the settings page.
You can override the page title within your templates by setting $wppm_title = 'Newly defined title';
before the call to get_header();
.
FAQ
- What custom field names does it use?
-
The field names used are
_seonuinu_title
,_seonuinu_description
and_pagemeta_keywords
.The underscore prefix prevents it from being displayed in the list of custom fields.
Reviews
There are no reviews for this plugin.
Contributors & Developers
“SEO nuinu” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “SEO nuinu” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
1.4
- Tested for wordpress 2.9.1