1、打开文件/include/extend.func.php,在文件最后添加:
/**
* dedecms当前文章添加二维码及调用代码
* 鹏程木业网https://www.360muye.cn/
**/
if ( ! function_exists('qr_code')) { function qr_code($aid,$widhtHeight ='150',$EC_level='L',$margin='0') { $arr = GetOneArchive($aid); if($arr['arcurl']){ $str = urlencode($arr['arcurl']); }else{ $str = urlencode($GLOBALS['cfg_phpurl'].'/view.php?aid='.$aid); } return '<img src="http://chart.apis.google.com/chart?chs='.$widhtHeight.'x'.$widhtHeight.'&cht=qr&chld='.$EC_level.'|'.$margin.'&chl='.$str.'" alt="QR code" widhtHeight="'.$widhtHeight.'" widhtHeight="'.$widhtHeight.'"/>'; } }
2、在文章页通过{dede:field.id function="qr_code(@me,200);"/}即可调用二维码图片。
备注:其中200为图片大小。
通过上面的代码即可调用织梦二维码,转载请注明:木业网