• I’d like to capture an additional meta-key in my conversion from Add Meta Tags to Yoast SEO. The extra meta key is “_amt_full_metatags”. I tried this but it doesn’t seem to work.

    
    $this->plugins = array(
    	'Add Meta Tags' => array(
    		'Custom Doctitle'  => '_amt_title',
    		'META Description' => '_amt_description',
    		'META Keywords'    => '_amt_keywords',
    		'Custom Scripts'   => '_amt_full_metatags',
    			),
    

    Any help is much appreciated.

    • This topic was modified 6 years, 6 months ago by sevensoutbill.
Viewing 1 replies (of 1 total)
  • Hi @sevensoutbill

    Based on suggestions from George Notarasv, I’ll recommend to check if the code block at line# 119 in plugin’s “seo-data-transporter.php” file is properly updated,

    From:

    'Add Meta Tags' => array(
    	'Custom Doctitle'  => '_amt_title',
    	'META Description' => '_amt_description',
    	'META Keywords'    => '_amt_keywords',
    ),

    To:

    'Add Meta Tags' => array(
    	'Custom Doctitle'  => '_amt_title',
    	'META Description' => '_amt_description',
    	'META Keywords'    => '_amt_keywords',
    	'Custom Scripts'   => '_amt_full_metatags',
    ),

    In case your additional meta keys are still not being recognized, it would be a good idea to check your database entries to make sure that the meta key used for that data is indeed “_amt_full_metatags”.

Viewing 1 replies (of 1 total)
  • The topic ‘Add Meta Tags’ is closed to new replies.