Great, thanks a lot!
Let me add a few more details that could help you, then:
- Instructions to connect a WordPress site to your Twitter account via the Publicize module are available here.
- Once Publicize is connected to Twitter, posts will start including the
twitter:creator tag as well, so no need to worry about that.
- If you don’t use the Publicize module at all but only use the Sharing module, Twitter meta tags are still added, but no
twitter:creator meta tag will be added.
- The
jetpack_open_graph_tags filter that’s already mentioned on the page still exists, so folks willing to play with code a bit can edit or add tags. That could be a way to add the twitter:creator tag without using Publicize, for example, with a code like this one:
function tweakjp_custom_twitter_creator( $og_tags ) {
if ( is_single() ) {
$og_tags['twitter:creator'] = '@jeherve';
}
return $og_tags;
}
add_filter( 'jetpack_open_graph_tags', 'tweakjp_custom_twitter_creator', 11 );
Let me know if you need some extra details about something!