ツイートURL を WordPress post editorに貼り付けたり、[tweet]
WordPress ショートコードをカスタマイズしたりすることで
WordPress 用Twitterプラグインは 埋め込み型ツイートをサポートしています。
Embedded TweetThe Twitter plugin for WordPress supports embedding a Tweet by pasting Tweet URL into the WordPress post editor or by customizing a |
以下のように投稿コンテンツの範囲内の行にツイートURLをコピーペーストすることで、WordPress の投稿に埋め込み型ツイートを追加します。
このクールなツイートを見てくれよ: https://twitter.com/Interior/status/552230355781320704 これはクールなツイートだ。
The Twitter plugin for WordPress extends the oEmbed Tweet URL functionality available since WordPress 3.4 with additional plugin-specific functionality. URL-based embeds pass through the plugin’s shortcode handler for site-wide customization of Tweet parameters. JavaScript normally returned in an oEmbed response is enqueued through the WordPress resource manager, improving site performance while centralizing customizations.
Embed using a Tweet URLAdd an embedded Tweet to a WordPress post by copy-and-pasting a Tweet URL on its own line in the post content area. Check out this cool Tweet: https://twitter.com/Interior/status/552230355781320704 That was a cool Tweet. The Twitter plugin for WordPress extends the oEmbed Tweet URL functionality available since WordPress 3.4 with additional plugin-specific functionality. URL-based embeds pass through the plugin’s shortcode handler for site-wide customization of Tweet parameters. JavaScript normally returned in an oEmbed response is enqueued through the WordPress resource manager, improving site performance while centralizing customizations. |
WordPress 用 Twitter プラグインはtweet
ショートコードハンドラを登録し、
ショートコードマクロを使って埋め込み型ツイートのカスタマイズをできるようにします。
このクールなツイートを見てくれよ: [tweet id="552230355781320704" align="right"] これはクールなツイートだ。
希望するツイートの数値型 ID 。
サンプル値: 552230355781320704
動画、写真、リンクプレビューの自動拡張を無効にするには、 false
か 0
かno
か off
を設定します。
サンプル値: false
このツイートが別のツイートへのリプライだった場合、会話内の前のツイートを非表示にするにはfalse
か 0
かno
か off
を設定します。
サンプル値: false
Embed using a shortcodeThe Twitter plugin for WordPress registers the Check out this cool Tweet: [tweet id="552230355781320704" align="right"] That was a cool Tweet. Supported shortcode parameters
id
required
The numerical ID of the desired Tweet. Example Value:
cards
optional
Set to Example Value:
conversation
optional
Set to Example Value:
align
optional
Set to Example Value: |
WordPress フィルターのshortcode_atts_tweet
に渡された連想配列にしたがって動作することで、ウェブサイトはサイト全体の埋め込み型ツイートに関する設定を設定できます。
このフィルターにしたがって動作するFunctions では、cards
キーやconversation
キー の値を変更する場合にはboolean 型を設定しなければなりません。
例:
/** * Always hide previous Tweet in conversation * * @param array $options parsed options with defaults applied * @param array $defaults default values of an embedded Tweet * @param array $attributes user-defined shortcode attributes * * @return array options array with our customization applied */ function tweet_custom_options( $options, $defaults, $attributes ) { $options['conversation'] = false; return $options; } add_filter( 'shortcode_atts_tweet', 'tweet_custom_options', 10, 3 );
Site-wide customization using a filterA website may set site-wide preferences for embedded Tweets by acting on the associative array passed to the Example: /** * Always hide previous Tweet in conversation * * @param array $options parsed options with defaults applied * @param array $defaults default values of an embedded Tweet * @param array $attributes user-defined shortcode attributes * * @return array options array with our customization applied */ function tweet_custom_options( $options, $defaults, $attributes ) { $options['conversation'] = false; return $options; } add_filter( 'shortcode_atts_tweet', 'tweet_custom_options', 10, 3 ); |