Jetpack Twitter Cards Won't Display
-
I have jetpack installed and connected to my twitter account, and it is posting on twitter just fine. However, it won’t display my new posts on twitter as the summary_large_image card, which is already approved for my site. I added in the following code to my theme functions.php file to override Jetpack’s default card preferences, but I still can’t get jetpack to use my twitter card. Any help would be greatly appreciated!
function tweakjp_custom_twitter_site( $og_tags ) { $og_tags['twitter:site'] = '@breadcrumbsg'; $og_tags['twitter:card'] = 'summary_large_image'; return $og_tags; } add_filter( 'jetpack_open_graph_tags', 'tweakjp_custom_twitter_site', 11 );
website: https://www.breadcrumbsguide.com
twitter: @breadcrumbsgThanks!
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Jetpack Twitter Cards Won't Display’ is closed to new replies.