This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function my_add_twitter_card_extras( $tags ) { | |
$tags[ 'twitter:site' ] = 'automattic'; // set @username of website | |
return $tags; | |
} | |
add_filter( 'jetpack_open_graph_tags', 'my_add_twitter_card_extras' ); | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Plugin Name: Import Meta Backup | |
* Plugin URI: http://somesite.com/where-this-plugin-lives/ | |
* Description: Backs up original data in meta. | |
* Author: Automattic | |
* Author URI: http://theauthor.com/ | |
* Version: 1.0 | |
* Text Domain: import-meta-backup |
OlderNewer