在我的网站上想要动态更改数据(Wordpress)。
以便从页面代码下载产品名称,并自动注入Even GA。
我创建了这段代码:
$out_name = $b;
preg_match('~<span class="Title">([^<]*)</span>~Usmi', $out_name, $name);
$name_product = $name[1];
$what[] = 'class="OfferLink">';
$on[] = 'itemscope="" itemtype="http://schema.org/Offer" onclick="ga(\'send\', \'event\', \''.$_SERVER['REQUEST_URI'].'\', \''.$name_product.'\');" class="OfferLink">';
$b = str_replace($what,$on,$b);
产品的名称被采用并投入到位,但是生成的地方都是相同的。