Home > php教程 > php手册 > 通用cms转换淘宝客

通用cms转换淘宝客

WBOY
Release: 2016-06-06 19:33:23
Original
1110 people have browsed it

用cms做导购平台。不会用api以前的淘宝客自动转换现在又不能用了 这样就不用去淘宝客后台一个个链接自己转换。了输入商品链接就能自动转换成淘宝客链接了 记得引入推广的js代码 a data-type=0 biz-itemid={$itemid} data-tmpl=60x25 data-tmplid=623 data-rd=

用cms做导购平台。不会用api 以前的淘宝客自动转换现在又不能用了
这样就不用去淘宝客后台一个个链接自己转换。了输入商品链接就能自动转换成淘宝客链接了
记得引入 推广的js代码
 这段是淘宝后台给的模版 有权限的用户可以自己设计模版

如果有更好的方法欢迎共享 我的方法比较笨 不会php哈哈! Phpcms DeDeCMS
<?php 
$taobaourl="{$link}";//{$link}是后台自定义的淘宝商品地址的字段
$itemtid = strstr($taobaourl,'&id=');//获取链接里面淘宝商品的数字id
$itemid = substr($itemtid,4,11);// 获取11位数的商品itemid
?>
<a data-type="0" biz-itemid="{$itemid}" data-tmpl="60x25" data-tmplid="623" data-rd="2" data-style="2" data-border="1" href="{$link}"  style="float:left" rel="nofollow"></a>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template