Skip to content

Commit

Permalink
Add support for SEO Title Tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanrice committed Dec 8, 2013
1 parent fc6c7dd commit 02811db
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 14 deletions.
30 changes: 17 additions & 13 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: SEO Data Transporter
Plugin URI: http://www.studiopress.com/plugins/seo-data-transporter
Description: Helps you transfer post/page specific SEO data, like custom doctitles, custom META descriptions and keywords, etc., from one platform (theme or plugin) to another.
Version: 0.9.8
Version: 0.9.9
Author: Nathan Rice
Author URI: http://www.nathanrice.net/
*/
Expand All @@ -26,14 +26,14 @@
'META Keywords' => '_catalyst_keywords',
'noindex' => '_catalyst_noindex',
'nofollow' => '_catalyst_nofollow',
'noarchive' => '_catalyst_noarchive'
'noarchive' => '_catalyst_noarchive',
),
'Frugal' => array(
'Custom Doctitle' => '_title',
'META Description' => '_description',
'META Keywords' => '_keywords',
'noindex' => '_noindex',
'nofollow' => '_nofollow'
'nofollow' => '_nofollow',
),
'Genesis' => array(
'Custom Doctitle' => '_genesis_title',
Expand All @@ -44,17 +44,17 @@
'noarchive' => '_genesis_noarchive',
'Canonical URI' => '_genesis_canonical_uri',
'Custom Scripts' => '_genesis_scripts',
'Redirect URI' => 'redirect'
'Redirect URI' => 'redirect',
),
'Headway' => array(
'Custom Doctitle' => '_title',
'META Description' => '_description',
'META Keywords' => '_keywords'
'META Keywords' => '_keywords',
),
'Hybrid' => array(
'Custom Doctitle' => 'Title',
'META Description' => 'Description',
'META Keywords' => 'Keywords'
'META Keywords' => 'Keywords',
),
'Thesis 1.x' => array(
'Custom Doctitle' => 'thesis_title',
Expand All @@ -74,7 +74,7 @@
'WooFramework' => array(
'Custom Doctitle' => 'seo_title',
'META Description' => 'seo_description',
'META Keywords' => 'seo_keywords'
'META Keywords' => 'seo_keywords',
)
);

Expand All @@ -101,7 +101,7 @@
'Custom Doctitle' => '_headspace_page_title',
'META Description' => '_headspace_description',
'META Keywords' => '_headspace_keywords',
'Custom Scripts' => '_headspace_scripts'
'Custom Scripts' => '_headspace_scripts',
),
'Infinite SEO' => array(
'Custom Doctitle' => '_wds_title',
Expand All @@ -110,7 +110,7 @@
'noindex' => '_wds_meta-robots-noindex',
'nofollow' => '_wds_meta-robots-nofollow',
'Canonical URI' => '_wds_canonical',
'Redirect URI' => '_wds_redirect'
'Redirect URI' => '_wds_redirect',
),
'Meta SEO Pack' => array(
'META Description' => '_msp_description',
Expand All @@ -121,12 +121,16 @@
'META Description' => 'description',
'META Keywords' => 'keywords',
),
'SEO Title Tag' => array(
'Custom Doctitle' => 'title_tag',
'META Description' => 'meta_description',
),
'SEO Ultimate' => array(
'Custom Doctitle' => '_su_title',
'META Description' => '_su_description',
'META Keywords' => '_su_keywords',
'noindex' => '_su_meta_robots_noindex',
'nofollow' => '_su_meta_robots_nofollow'
'nofollow' => '_su_meta_robots_nofollow',
),
'WordPress SEO' => array(
'Custom Doctitle' => '_yoast_wpseo_title',
Expand All @@ -135,7 +139,7 @@
'noindex' => '_yoast_wpseo_meta-robots-noindex',
'nofollow' => '_yoast_wpseo_meta-robots-nofollow',
'Canonical URI' => '_yoast_wpseo_canonical',
'Redirect URI' => '_yoast_wpseo_redirect'
'Redirect URI' => '_yoast_wpseo_redirect',
)
);

Expand All @@ -159,8 +163,8 @@ function seodt_activation_hook() {
/**
* Include the other elements of the plugin.
*/
require_once(SEODT_PLUGIN_DIR . '/admin.php');
require_once(SEODT_PLUGIN_DIR . '/functions.php');
require_once( SEODT_PLUGIN_DIR . '/admin.php' );
require_once( SEODT_PLUGIN_DIR . '/functions.php' );

/**
* Manual conversion test
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,7 @@ It's relatively stable. This plugin has been in the repository since August, 201
* Added support for Add Meta Tags and Infinite SEO.

= 0.9.8 =
* Added support for Thesis 2.x
* Added support for Thesis 2.x

= 0.9.9 =
* Added support for SEO Title Tag

0 comments on commit 02811db

Please sign in to comment.