There are three types of Twitter Cards: summary, photo, and video. The summary Twitter Card is for articles and text-based content, while photo and video cards are self-explanatory (YouTube uses the video card type, for example). There are a few META tags used for all card types, then a few more that are card-type-specific. All META tag name attributes are prefixed with twitter:.
Generic META Tags
META tags you would use in all card cases include:
twitter:card – The type of card to be created: summary, photo, or video.
twitter:url – The URL that should be used for the card. This will likely be the same URL as the page’s canonical link.
twitter:title – The title as it should display in the Twitter Card.
twitter:description – A 200 character summary of the content at the given URL.
twitter:image – A representative image URL for the content. In many cases, simply providing your logo’s URL will be just fine.
Each of these items get their own META tag, so the Twitter Card META tags for this page would look like this preview:
<meta name="twitter:card"content="summary_large_image"><meta name="twitter:url"content="http://postrss.com"><meta name="twitter:title"content="How To Post a Link on Twitter With Image"><meta name="twitter:description"content="How To Post a Link on Twitter With Image."><meta name="twitter:image:src" content="http://postrss.com/wp-content/uploads/2014/01/mainslide1.jpg">
Source code for WordPress tags for Twitter for show image like link at posts.
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="<?php echo get_permalink($ID); ?>">
<meta name="twitter:title" content="<?php echo get_the_title($ID); ?>">
<meta name="twitter:description" content="<?php echo mb_substr($content,0,120); ?>">
<meta name="twitter:image:src" content="<?php $ID = $wp_query->post->ID; $image = wp_get_attachment_image_src( get_post_thumbnail_id( $ID ),'full'); echo $image[0]; ?>">
This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
You can adjust all of your cookie settings by navigating the tabs on the left hand side.
Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings.
If you disable this cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.