符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
修改步骤如下:
为天津等地区用户提供了全套网页设计制作服务,及天津网站建设行业解决方案。主营业务为网站制作、成都网站制作、天津网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!
1、首先大家先找到TitleSEO插件的所在目录,z-blog的所在根目录下---plugin目录下--TitleSEO文件包,在这个文件包里有两个文件,分别是include.asp 和plugin.xml 。include.asp是该插件的主程序,plugin.xml文件为插件信息。
2、打开include.asp这个文件,找到下面这段代码
Function TitleSEO_Catalog(ByRef Ftemplate)
If IsEmpty(Ftemplate) Then Exit Function
If Request.QueryString("cate") "" Or _
Request.QueryString("auth") "" Or _
Request.QueryString("date") "" Or _
Request.QueryString("tags") "" Then
Ftemplate = TitleSEO_ReplaceCode(Ftemplate,"#BlogTitle# #ZC_MSG044# #ZC_BLOG_TITLE#")
Else
Call TitleSEO_Default(Ftemplate)
End If
End Function
将上面这段代码替换为下面这段代码:
Function TitleSEO_Catalog(ByRef Ftemplate)
If IsEmpty(Ftemplate) Then Exit Function
If Request.QueryString("cate") "" Or Request.QueryString("auth") "" Or Request.QueryString("date") "" Or Request.QueryString("tags") "" Then
Ftemplate = TitleSEO_ReplaceCode(Ftemplate,"#BlogTitle# #ZC_MSG044# #ZC_BLOG_TITLE#")
elseif Request.QueryString("page") "" then
Call TitleSEO_Default(Ftemplate)
else
Ftemplate = TitleSEO_ReplaceCode(Ftemplate,"#BlogTitle# #ZC_MSG044# #ZC_BLOG_TITLE#")
end if
End Function
zblogphp版程序的模版目录路径为zb_users\theme\
所有模版都放在这个目录下,如果你要制作或zblog模版,前提你需要了解下模版的结构以及调用参数等知识,你可以去zblog官网里的wiki页面里查看模版开发的相关知识。
给你个范例:
编辑wp-config.php文件。把以下的代码插入到文件中
define( 'WP_CONTENT_DIR', '/home/lyblog/public_html/my_content' );
define( 'WP_CONTENT_URL', 'http://域名/user_content' );
1、新建广告文件
在模板文件夹内建一个文件作为放广告代码的文件(这里暂且命名为:post-ad.php)
2、修改模板文件
找到 \zb_users\theme\default\template\index.php (default根据你自己的模板为准)这个文件找到下面这段代码:
PHP
{foreach $articles as $article}
{if $article.IsTop}
{template:post-istop}
{else}
{template:post-multi}
{/if}
{/foreach}
如果你只想在置顶列表里加入广告那么将上面的代码替换为:
PHP
{php}$j=1;{/php}
{foreach $articles as $article}
{if $article.IsTop}
{template:post-istop}
{if $j==3}
{template:post-ad} (这里也可以不调用,直接放广告代码)
{/if}
{php}$j++;{/php}
{else}
{template:post-multi}
{/if}
{/foreach}
(数字3为广告出现的位置,post-ad 为第一步建的文件名,下同)
如果你想在除置顶列表外加入广告那么将上面的代码替换为:
PHP
{php}$i=1;{/php}
{foreach $articles as $article}
{if $article.IsTop}
{template:post-istop}
{else}
{template:post-multi}
{if $i==3}
{template:post-ad}
{/if}
{php}$i++;{/php}
{/if}
{/foreach}
上面两个位置同时出现的代码为:
PHP
{php}$i=1;$j=1;{/php}
{foreach $articles as $article}
{if $article.IsTop}
{template:post-istop}
{if $j==3}
{template:post-ad}
{/if}
{php}$j++;{/php}
{else}
{template:post-multi}
{if $i==3}
{template:post-ad}
{/if}
{php}$i++;{/php}
{/if}
{/foreach}