真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

zblog發(fā)布文章寫(xiě)代碼 zblog開(kāi)發(fā)文檔

求zblog使用高手解答?。?! 在后臺(tái)的文章編輯,在哪個(gè)位置寫(xiě)點(diǎn)什么就有關(guān)鍵字?

你說(shuō)的關(guān)鍵詞是不是在源代碼中看到啊,一般我們叫keywords,zblog默認(rèn)的模板是沒(méi)有設(shè)置關(guān)鍵詞的,如果你安裝了插件,一般你你的tag標(biāo)簽會(huì)是你的關(guān)鍵詞,把tag標(biāo)簽寫(xiě)好就行。更多zblog教程可以參考:zblog仿站樂(lè)園。

我們提供的服務(wù)有:成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、濟(jì)陽(yáng)ssl等。為近千家企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢(xún)和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的濟(jì)陽(yáng)網(wǎng)站制作公司

zblogphp的發(fā)表的文章在源碼哪個(gè)文件夾

1、新建廣告文件

在模板文件夾內(nèi)建一個(gè)文件作為放廣告代碼的文件(這里暫且命名為:post-ad.php)

2、修改模板文件

找到 \zb_users\theme\default\template\index.php (default根據(jù)你自己的模板為準(zhǔn))這個(gè)文件找到下面這段代碼:

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} (這里也可以不調(diào)用,直接放廣告代碼)

{/if}

{php}$j++;{/php}

{else}

{template:post-multi}

{/if}

{/foreach}

(數(shù)字3為廣告出現(xiàn)的位置,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}

上面兩個(gè)位置同時(shí)出現(xiàn)的代碼為:

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}

zblog編輯器FCKeditor中如何插入代碼并高亮顯示

不但可以向本文一樣顯示代碼,并且高亮顯示。

一、在FCKeditor的配置文件(一般為fckconfig.js或custom.config.js)中,配置 FCKConfig.ToolbarSets設(shè)置部分 添加一個(gè)按鈕值 'InsertCode',步驟如下:

1、在配置文件中找到下面的代碼:

JavaScript代碼

XML/HTML代碼

FCKConfig.ToolbarSets[Default]=[

['Source','FontName','FontSize'],

['TextColor','BGColor'],

['Image','Media','Flash','Table','Smiley','SpecialChar'],

['ShowBlocks','Preview','FitWindow'],

'/',

['PasteText','Templates','Find','RemoveFormat'],

['Undo','Redo'],

['-','Bold','Italic','Underline','StrikeThrough'],

['OrderedList','UnorderedList','-','Outdent','Indent','Blockquote'],

['JustifyLeft','JustifyCenter','JustifyRight'],

['Link','Unlink','Rule'],

['Subscript','Superscript','-','InsertCode']//Nocommaforthelastrow.];看到了么?最后一句的區(qū)別。

2、查找:FCKConfig.PluginsPath = FCKConfig.BasePath + 'plugins/';

在下面加上:

FCKConfig.Plugins.Add('insertcodeRun');

二、打開(kāi)fckeditor\editor\lang文件夾里的zh-cn.js,在結(jié)尾的 };之前 加入以下代碼

InsertCodeBtn : 插入代碼

注意:加入上面代碼時(shí),原來(lái)的最未句代碼后面要加個(gè)逗號(hào).


本文題目:zblog發(fā)布文章寫(xiě)代碼 zblog開(kāi)發(fā)文檔
URL網(wǎng)址:http://weahome.cn/article/dopsjoj.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部