使用Analytics添加/回显div-在函数中使用代码。php

时间:2016-08-10 作者:Dario Jürgens

我想我想做一些特别的事情。我需要向函数中的函数添加一个带有GA代码的html片段。php。为此,我想添加以下代码:

echo (\'<div onClick="ga(\'send\', \'event\', \'will-ich-haben\', \'klick\', \'test-klick\');">\');
此功能:

// Will ich haben
add_action( \'woocommerce_product_meta_end\', \'childReview\' );
function childReview() {

  global $post;

  echo do_shortcode(\'[cl-popup size="l" btn_label="Will ich haben!" btn_bgcolor="#006982" btn_color="#ffffff" overlay_bgcolor="rgba(0,105,130,0.75)" title_textcolor="#006982" content_textcolor="#006982"]
<p align="center" style="color: #999999;"><i>\' .get_the_title( $post_id ). \'</i></p>
 <img style="width: 400px; height: auto; float: left;" src="\' .wp_get_attachment_url ( get_post_thumbnail_id( $post->ID ) ). \'"/>
 <h2>So kommst du zum Produkt:</h2>
 <ul style="margin-left: 50px;">
    <li><a href="http://www.wohngeschwister.de/kontakt/">Besuch uns am Grossneumarkt!</a></li>
    <li>Schreib uns eine E-Mail: <a href="mailto:[email protected]?subject=Interesse%20an%20\' .get_the_title( $post_id ). \'">[email protected]</a></li>
    <li>oder ruf uns an: <a href="tel:04046643937">040/466 439 37</a></li>
</ul>
&Uuml;brigens: Egal f&uuml;r welchen Weg du dich entscheidest, in Zusammenarbeit mit <a href="http://delivva.de/" target="_blank">delivaa </a>liefern wir dir dein Lieblingsprodukt innerhalb von 60 Minuten innerhalb Hamburgs!
[/cl-popup]\');
}
我试图简单地添加它,但出现了一个错误。您知道如何以智能方式集成它吗?目标:测量通过快捷代码生成的按钮上的单击次数。

非常感谢Dario

1 个回复
SO网友:MrBizle

echo (\'<div onClick="ga(\'send\', \'event\', \'will-ich-haben\', \'klick\', \'test-klick\');">\');
我没有进一步研究,但作为第一步,这个字符串没有正确连接。

echo "<div onClick=\'ga(\'send\', \'event\', \'will-ich-haben\', \'klick\', \'test-klick\')\'></div>";