我想在我所有帖子的AMP版本中添加一个脚本(一个LikeCoin按钮)。这是我现在拥有的代码。此代码可以帮助我将该按钮很好地放在AMP版本的所有帖子中,但是由于该按钮将被跟踪(即,在帖子A中,需要使用A的URL才能进行跟踪;在帖子V中,需要将B的URL用于跟踪
如何根据代码所在的帖子自动更改代码中的URL?
我的网站:https://howtostudycantonese.com/amp/
谢谢你们!
我正在使用的代码:
add_action('pre_amp_render_post','ampforwp_insert_html_content');
function ampforwp_insert_html_content(){
add_filter( 'the_content', 'ampforwp_insert_html_code' );
}
function ampforwp_insert_html_code($content){
$iframe = '<iframe data-v-b66e9a5a="" src="https://button.like.co/in/embed/howtostudycantonese/button?referrer=https%3A%2F%2Fwww.howtostudycantonese.com%2Fu8l9-particle%EF%BC%88%E5%98%85%EF%BC%89%2F&type=wp" frameborder="0" class="lc-margin-top-64 lc-margin-bottom-32 lc-mobile"></iframe>';
$content = $content . $iframe;
return $content;
}