March 31, 2015
January 7, 2015
用{}包含起來的是"標籤" 可以解釋為所保含的HTML與內容
注1: 標有*号號的是2.0.3起新增的標籤。
注2: 各個標籤在其規定的區域內可直接使用,例如在$elements['header'] 區域中,{blogkeywords}可直接輸出blog關鍵詞。但這些標籤不是全局性的,當在$elements['displayheader'] 中引用時,不會被解釋。在Bo-blog 2.0.3以前的版本中,您無法跨區域使用標籤,但2.0.3 版本起,程序提供了一個跨區域引用標籤的方法。要使用非本區域中定義的標籤,請使用<!--global:{標籤名}--> 。例如,在本例中,書寫<!--global:{blogkeywords}--> 即可輸出blog關鍵詞。
注1: 標有*号號的是2.0.3起新增的標籤。
注2: 各個標籤在其規定的區域內可直接使用,例如在$elements['header'] 區域中,{blogkeywords}可直接輸出blog關鍵詞。但這些標籤不是全局性的,當在$elements['displayheader'] 中引用時,不會被解釋。在Bo-blog 2.0.3以前的版本中,您無法跨區域使用標籤,但2.0.3 版本起,程序提供了一個跨區域引用標籤的方法。要使用非本區域中定義的標籤,請使用<!--global:{標籤名}--> 。例如,在本例中,書寫<!--global:{blogkeywords}--> 即可輸出blog關鍵詞。
January 5, 2015
January 4, 2015
January 2, 2015
template/主題/elements.php
找出下面這一段
// 評論數量 所有評論
$elements['comment']=<<<eot
<div class="commentbox">
<div class="commentbox-title">
<img src="{$template['images']}/comments_li.gif" /> <strong>{replier}</strong> {replierhomepage} {replierip}
<div class="commentbox-label">{replytime} {addadminreply} {deladminreply} {delreply} {blockreply}</div>
</div>
<div class="commentbox-content">
{replycontent}
<div style="display: {ifadminreplied}" id="replied_{commentid}">
<div class="reply-content"><span class="reply-content_title">回覆內容</span> {adminreplycontent}</div>
</div>
</div>
<div id="{commentid}" style="display: none">{adminreplybody}
</div>
</div>
eot;
$elements['comment']=<<<eot
<div class="commentbox">
<div class="commentbox-title">
<img src="{$template['images']}/comments_li.gif" /> <strong>{replier}</strong> {replierhomepage} {replierip}
<div class="commentbox-label">{replytime} {addadminreply} {deladminreply} {delreply} {blockreply}</div>
</div>
<div class="commentbox-content">
{replycontent}
<div style="display: {ifadminreplied}" id="replied_{commentid}">
<div class="reply-content"><span class="reply-content_title">回覆內容</span> {adminreplycontent}</div>
</div>
</div>
<div id="{commentid}" style="display: none">{adminreplybody}
</div>
</div>
eot;
December 31, 2014
這是inc檔案裏的設定,不是只是改變大小的選項,
這只是個人筆記,萬一您的模組或顯示有問題,一概不負責。
size=選項內字號
(0=0) (8=1) (10=2) (12=3) (14=4) (18=5) (24=6) (36=7)
這只是個人筆記,萬一您的模組或顯示有問題,一概不負責。
size=選項內字號
(0=0) (8=1) (10=2) (12=3) (14=4) (18=5) (24=6) (36=7)
function makefontsize ($size, $word) {
$word=stripslashes($word);
$sizeitem=array (0, 8, 10, 12, 14, 18, 24, 36);
$size=$sizeitem[$size];
return "<span style=\"font-size: {$size}px;\">{$word}</span>";
}
$word=stripslashes($word);
$sizeitem=array (0, 8, 10, 12, 14, 18, 24, 36);
$size=$sizeitem[$size];
return "<span style=\"font-size: {$size}px;\">{$word}</span>";
}