Skip to content

Commit ed0ec1c

Browse files
authored
Merge pull request #11 from iamazik/develop
Fix typo on dropdown label and Add support for The SEO Framework plugin
2 parents 63fcb0e + 81ae956 commit ed0ec1c

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

includes/class-seo-data-transporter-admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public function generate_select( $name, $themes, $plugins ) {
109109
}
110110
echo '</optgroup>';
111111

112-
printf( '<optgroup label="%s">', __('Themes', 'seo-data-transporter') );
112+
printf( '<optgroup label="%s">', __('Plugins', 'seo-data-transporter') );
113113
foreach ( $plugins as $platform => $data ) {
114114
printf( '<option value="%s">%s</option>', esc_attr( $platform ), esc_html( $platform ) );
115115
}

seo-data-transporter.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,15 @@ public function __construct() {
174174
'noindex' => '_su_meta_robots_noindex',
175175
'nofollow' => '_su_meta_robots_nofollow',
176176
),
177+
'The SEO Framework' => array(
178+
'Custom Doctitle' => '_genesis_title',
179+
'META Description' => '_genesis_description',
180+
'noindex' => '_genesis_noindex',
181+
'nofollow' => '_genesis_nofollow',
182+
'noarchive' => '_genesis_noarchive',
183+
'Canonical URI' => '_genesis_canonical_uri',
184+
'Redirect URI' => 'redirect',
185+
),
177186
'Yoast SEO' => array(
178187
'Custom Doctitle' => '_yoast_wpseo_title',
179188
'META Description' => '_yoast_wpseo_metadesc',

0 commit comments

Comments
 (0)