Title: Twitter Cards
Author: Niall Kennedy
Published: <strong>2012 年 6 月 17 日</strong>
Last modified: 2013 年 4 月 3 日

---

搜索插件

**该插件尚未通过WordPress的最新3个主要版本进行测试**。 当与较新版本的WordPress一起
使用时，可能不再受到维护或支持，并且可能会存在兼容性问题。

![](https://s.w.org/plugins/geopattern-icon/twitter-cards.svg)

# Twitter Cards

 作者：[Niall Kennedy](https://profiles.wordpress.org/niallkennedy/)

[下载](https://downloads.wordpress.org/plugin/twitter-cards.1.0.5.zip)

 * [详情](https://cn.wordpress.org/plugins/twitter-cards/#description)
 * [评价](https://cn.wordpress.org/plugins/twitter-cards/#reviews)
 * [开发进展](https://cn.wordpress.org/plugins/twitter-cards/#developers)

 [支持](https://wordpress.org/support/plugin/twitter-cards/)

## 描述

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 ( “” vs. “” )

## 屏幕截图

[⌊Twitter Card display on desktop⌉⌊Twitter Card display on desktop⌉[

Twitter Card display on desktop

[⌊Twitter Card display on mobile⌉⌊Twitter Card display on mobile⌉[

Twitter Card display on mobile

## 常见问题

  Why don’t you support feature X?

I wrote this plugin for my own site, [NiallKennedy.com](http://www.niallkennedy.com/),
added some slight flexibility through filters, and released the plugin on GitHub
as [a PHP library](https://github.com/niallkennedy/twitter-cards-php) with [a WordPress plugin wrapper](https://github.com/niallkennedy/twitter-cards).
I use summary cards for my site’s articles. If you would like to add better support
for photos, galleries, videos, apps, or products 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.

## 评价

此插件暂无评价。

## 贡献者及开发者

「Twitter Cards」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ Niall Kennedy ](https://profiles.wordpress.org/niallkennedy/)

[帮助将「Twitter Cards」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/twitter-cards)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/twitter-cards/)，查看
[SVN仓库](https://plugins.svn.wordpress.org/twitter-cards/)，或通过[RSS](https://plugins.trac.wordpress.org/log/twitter-cards/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/twitter-cards/)。

## 更新日志

#### 1.0.5

 * Update Twitter Cards PHP library to support extending the plugin for new app,
   gallery, or product Twitter Card types.

#### 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

## 额外信息

 *  版本 **1.0.5**
 *  最后更新：**13 年前**
 *  活跃安装数量 **300+**
 *  WordPress 版本 ** 3.3 或更高版本 **
 *  已测试的最高版本为 **3.5.2**
 *  语言
 * [English (US)](https://wordpress.org/plugins/twitter-cards/)
 * 标签
 * [semantic markup](https://cn.wordpress.org/plugins/tags/semantic-markup/)[twitter](https://cn.wordpress.org/plugins/tags/twitter/)
   [twitter cards](https://cn.wordpress.org/plugins/tags/twitter-cards/)
 *  [高级视图](https://cn.wordpress.org/plugins/twitter-cards/advanced/)

## 评级

 4.5 星（最高 5 星）。

 *  [  1 条 5 星评价     ](https://wordpress.org/support/plugin/twitter-cards/reviews/?filter=5)
 *  [  1 条 4 星评价     ](https://wordpress.org/support/plugin/twitter-cards/reviews/?filter=4)
 *  [  0 条 3 星评价     ](https://wordpress.org/support/plugin/twitter-cards/reviews/?filter=3)
 *  [  0 条 2 星评价     ](https://wordpress.org/support/plugin/twitter-cards/reviews/?filter=2)
 *  [  0 条 1 星评价     ](https://wordpress.org/support/plugin/twitter-cards/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/twitter-cards/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/twitter-cards/reviews/)

## 贡献者

 *   [ Niall Kennedy ](https://profiles.wordpress.org/niallkennedy/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/twitter-cards/)