WordPress 用Twitterプラグインは 、twitter_video
WordPress ショートコードを通して
Twitter 動画埋め込み をサポートしています。
ショートコードをあなたのWordPress の投稿に追加することで、埋め込み動画をWordPress の投稿に追加します。
Example:
このクールな動画を見てくれよ: [twitter_video id="560070183650213889"] これはクールな動画だ。
ショートコードの埋め込み結果:
You can now shoot, edit and share video on Twitter. Capture life’s most moving moments from your perspective. pic.twitter.com/31JoMS50ha
— Twitter (@twitter) January 27, 2015
Embedded VideoThe Twitter plugin for WordPress supports Twitter video embeds through the Example: Check out this cool video: [twitter_video id="560070183650213889"] That was a cool video. Shortcode result:
|
希望するツイートの数値型 ID 。
サンプル値: 560070183650213889
動画再生の下隅にあるツイッターバードのロゴを選択した時に、ツイートをオーバレイ表示するのではなくツイートURLへ直接送るには、false
か 0
か no
か off
を設定します。
サンプル値: false
Supported shortcode parameters
id
required
The numerical ID of the desired Tweet. Example Value:
status
optional
Set to Example Value: |
WordPress フィルターのshortcode_atts_twitter_video
に渡された連想配列にしたがって動作することで、ウェブサイトはサイト全体のTwitter動画に関する設定を設定できます。
このフィルターにしたがって動作するFunctions では、status
キーに関連する値を変更する場合にはboolean 型を設定しなければなりません。
例:
/** * Always hide status overlay * * @param array $options parsed options with defaults applied * @param array $defaults default values of an embedded video * @param array $attributes user-defined shortcode attributes * * @return array options array with our customization applied */ function twitter_video_custom_options( $options, $defaults, $attributes ) { $options['status'] = false; return $options; } add_filter( 'shortcode_atts_twitter_video', 'twitter_video_custom_options', 10, 3 );
Site-wide customization using a filterA website may set site-wide preferences for Twitter hosted videos by acting on the associative array passed to the Example: /** * Always hide status overlay * * @param array $options parsed options with defaults applied * @param array $defaults default values of an embedded video * @param array $attributes user-defined shortcode attributes * * @return array options array with our customization applied */ function twitter_video_custom_options( $options, $defaults, $attributes ) { $options['status'] = false; return $options; } add_filter( 'shortcode_atts_twitter_video', 'twitter_video_custom_options', 10, 3 ); |