WordPress 用Twitter プラグインでは、WordPress ショートコードのtwitter_tracking
を使ってTwitter 広告キャンペーンのコンバージョントラッキングや サイト訪問者へのリマーケティング を簡単に行うことができます。
あなたのウェブページにTwitter の広告トラッキングを追加するには、
投稿コンテンツのエリアにショートコードを追加するか、do_shortcode WordPress function を使ってショートコードを精査します。
あなたのウェブサイトやその著者にてトラッカーを使用すると明示的に設定された場合のみ、WordPress 用Twitter プラグインは追加でトラッカーをインクルードします。 この機能を使用する前にTwitterの広告トラッカー開示ポリシーを読み、あなたのサイトのプライバシーポリシーを適切なものに変更してください。
例:
[twitter_tracking id="12b34"]
Ad conversion trackingThe Twitter plugin for WordPress makes it easy to track Twitter advertising campaign conversions or build a remarketing audience with the The Twitter plugin for WordPress only includes additional trackers when explicitly specified by your website or its authors. Please read Twitter’s advertising tracker disclosure policies and modify your site’s privacy policy as appropriate before using this feature. Example: [twitter_tracking id="12b34"] |
Twitterのコンバージョントラッキングツールで生成された、Twitter 広告トラッキングの識別子。
サンプル値: 12b34
Supported shortcode parameters
id
required
The Twitter advertising tracking identifier generated by Twitter’s conversion tracking tools. Example Value: |
WordPress フィルターのshortcode_atts_twitter_tracking
に渡した連想配列に従って動作することで、ウェブサイトは指定したページにトラッキングIDを設定することができます。
WordPress のフィルタープロセスで上書きをしていない場合、
id
属性を明示的に設定していないショートコードパラメータでは、空の文字列が戻り値として返ります。
例:
/** * Set a tracking ID for specific pages * * @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 twitter_tracking_custom_options( $options, $defaults, $attributes ) { if ( is_page( 42 ) ) { $options['id'] = '12b34'; } return $options; } add_filter( 'shortcode_atts_twitter_tracking', 'twitter_tracking_custom_options', 10, 3 );
Set the tracking ID using a filterA website may wish to set tracking IDs for specific pages by acting on the associative array passed to the associative array passed to the A shortcode parameter with no explicitly provided Example: /** * Set a tracking ID for specific pages * * @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 twitter_tracking_custom_options( $options, $defaults, $attributes ) { if ( is_page( 42 ) ) { $options['id'] = '12b34'; } return $options; } add_filter( 'shortcode_atts_twitter_tracking', 'twitter_tracking_custom_options', 10, 3 ); |