codecamp

PHPCMS安装分享按钮

PHPCMS安装分享按钮

如果您选择使用侧边栏式分享插件,我们建议您将插件代码嵌入页尾,加快页面主体的载入速度,步骤如下:

1、打开您的站点上位于该位置的模版文件:phpcms/templates/default/content/footer.html,用于修改。

2、复制您获得的分享按钮代码。

3、将您获得的百度分享代码复制到</body>标签之前,即可完成代码嵌入。

官方默认模版示例:

{if $allow_visitor==1}
{$content}
<!-- Baidu Button BEGIN -->
    <div id="bdshare" class="bdshare_t bds_tools get-codes-bdshare">
        <span class="bds_more">分享到:</span>
        <a class="bds_qzone"></a>
        <a class="bds_tsina"></a>
        <a class="bds_tqq"></a>
        <a class="bds_renren"></a>
    </div>
    <script type="text/javascript" id="bdshare_js" data="type=tools&uid=0" ></script>
    <script type="text/javascript" id="bdshell_js"></script>
    <script type="text/javascript">
        document.getElementById("bdshell_js").src = "http://bdimg.share.baidu.com/static/js/shell_v2.js?cdnversion=" + Math.ceil(new Date()/3600000);
    </script>
<!-- Baidu Button END -->
<!--内容关联投票-->

 

如果您选择使图标、文字或按钮样式的按钮,您可以自由地将按钮代码嵌入到您网站的各个位置。下面以文章内容页面为例进行说明文章内容页面:

1、打开您的站点上位于该位置的模版文件:phpcms/templates/default/content/show.html,用于修改。

2、复制您获得的分享按钮代码。

3、将您获得的百度分享代码复制到"{$content}"标签之前或之后,即可完成代码嵌入。

官方默认模版示例:

<a href="{APP_PATH}index.php?m=link" target="_blank">友情链接</a>
<br />
Powered by <strong><a href="http://www.phpcms.cn" target="_blank">PHPCMS</a></strong> <em>{get_pc_version(1)}</em> &copy; 2011 <img src="{IMG_PATH}copyright.gif"/>{tjcode()}{php echo runhook('glogal_footer')}
</p>
</div>
<script type="text/javascript">
$(function(){
	$(".picbig").each(function(i){
		var cur = $(this).find('.img-wrap').eq(0);
		var w = cur.width();
		var h = cur.height();
	   $(this).find('.img-wrap img').LoadImage(true, w, h,'{IMG_PATH}s_nopic.gif');
	});
})
</script>
<!-- Baidu Button BEGIN -->
    <script type="text/javascript" id="bdshare_js" data="type=slide&img=0&uid=0" ></script>
    <script type="text/javascript" id="bdshell_js"></script>
    <script type="text/javascript">
        document.getElementById("bdshell_js").src = "http://bdimg.share.baidu.com/static/js/shell_v2.js?cdnversion=" + Math.ceil(new Date()/3600000);
    </script>
<!-- Baidu Button END -->
</body>
</html>
织梦CMS安装分享插件
帝国CMS安装分享插件
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }