用户需要在其页脚中使用它,所以我认为您应该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"]