google conversion code

时间:2011-04-18 作者:Steve Fischer

将google转换跟踪代码添加到特定页面的最佳实践是什么?

1 个回复
最合适的回答,由SO网友:mrtsherman 整理而成

用户需要在其页脚中使用它,所以我认为您应该use conditional page logic. 类似于:

If ( is_single(postID)) { //insert tracking code  }
您也可以使用帖子标题或帖子slug,但id是最可靠的。

旧答案

我会考虑writing a shortcode. 将以下内容添加到函数中。php文件。可以指定输入参数。在本例中,我指定id和目标。

add_shortcode( \'signup\', \'signup_shortcode\' );

function signup_shortcode( $atts ) {
extract( shortcode_atts( array(
    \'id\' => \'\',
    \'target\' => \'\',
), $atts ) );

$HTML = \'hello world\'.$id;

return $HTML;
}

然后在你的帖子中这样称呼它:

[signup id="1234" target="goog"]

结束