GithubHelp home page GithubHelp logo

twitter-cards's Introduction

=== Twitter Cards ===
Contributors: niallkennedy
Tags: twitter, twitter cards, semantic markup
Requires at least: 3.3
Tested up to: 3.5.1
Stable tag: 1.0.4
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Add Twitter Card markup to individual posts. Supports summary, photo, and player types.

== Description ==

Generate inline content previews on Twitter.com and Twitter clients by including [Twitter Card](https://dev.twitter.com/docs/cards) HTML meta elements for individual posts.

All cards are a Twitter Card summary by default. Tap into the `twitter_card_properties` filter to reference the Twitter accounts of your site or author.

Test your site's Twitter Card display through [Twitter's card preview tool](https://dev.twitter.com/docs/cards/preview).

== Filters ==

* `twitter_cards_properties` - act on an array of properties before they are output to the page
* `twitter_cards_htmlxml` - override the default treatment of `html` with `xml`. XML will self-close the meta void element ( "<element />" vs. "<element>" )

== Frequently Asked Questions ==

= Why don't you support feature X? =

I wrote this plugin for my own site, [NiallKennedy.com](http://www.niallkennedy.com/ "Niall Kennedy"), added some slight flexibility through filters, and released the plugin on GitHub as [a PHP library](https://github.com/niallkennedy/twitter-cards-php "Twitter Cards generator PHP") with [a WordPress plugin wrapper](https://github.com/niallkennedy/twitter-cards "Twitter Cards WordPress plugin"). I use summary cards for my site's articles. If you would like to add better support for photos or videos exposed to Twitter you can fork my work and optionally send some code in a pull request.

= How do I add my Twitter account? =

First you need to hook into the filter from code in your theme or site plugin(s). You can add this code to your theme's `functions.php` file or create a new file in `wp-content/mu-plugins/twitter-cards.php` or something similar.

`add_filter( 'twitter_cards_properties', 'twitter_custom' );`

Next you need to modify the array passed to the filter with your own values.

	function twitter_custom( $twitter_card ) {
		if ( is_array( $twitter_card ) ) {
			$twitter_card['creator'] = '@niall';
			$twitter_card['creator:id'] = '1085';
		}
		return $twitter_card;
	}

The values generated by the plugin are passed to your new function for manipulation before output.

The Twitter API function users/show is a good way to lookup your account information. Copy the `screen_name` and `id_str` to `creator` and `creator:id` array values respectively in your filter function referenced above.
https://api.twitter.com/1/users/show.json?screen_name=niall

Your Twitter screenname may change but your Twitter ID will remain the same. Grab both while you are setting up your site to provide Twitter with the best data.

= You forgot to include a trailing slash on meta elements =

The plugin outputs HTML-style void elements without a trailing slash by default. Add XML-style trailing slashes by returning a value of `xml` on the `twitter_cards_htmlxml` filter.

== Screenshots ==

1. Twitter Card display on desktop
2. Twitter Card display on mobile

== Upgrade Notice ==

= 1.0.4 =
Treat post format of image as a Twitter photo card.

= 1.0.3 =
Simplify description generator. Allow no description for photo cards.

= 1.0.2 =
Change attribute from value to content to match current Twitter documentation.

= 1.0.1 =
Improved auto-generated description.

== Changelog ==

= 1.0.4 =
* Treat post format of "image" as a Twitter photo card.

= 1.0.3 =
* Simplify the description generator. Based on the Open Graph protocol description generator in the Facebook plugin.
* Update bundled version of Twitter Cards PHP, fixing description property treated as a required property for photo card type.

= 1.0.2 =

* Change attribute from value to content to match current Twitter documentation.

= 1.0.1 =

* Improve automatic excerpt generator and scrubber

= 1.0 =
* Initial release

twitter-cards's People

Contributors

niallkennedy avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.