百度文庫:http://wenku.baidu.com/link?url=4NTnAjRUj9yn1ETzYv1U55OEIM11AwAwfnD-G8l2YEgwsxesWDKc7mex53W15SyrrsqStwK26FHHnl6HeegkB_zjeUV1aGXk0WVkkbVtgz7javascript
寫博客也有幾年了,如今能找到的第一篇博文發佈時間是php
2007css
年html
11java
月python
11sql
日,ruby
那仍是在百度空間裏面的,其實更早的是在wordpress
csai網站
,不過賬號,密碼,博客網址
全忘記了。
而真正來博客園的寫博客時間不是很長,
一直很喜歡這裏的氛圍。
這
段時間發現幾個在博客園博客中可使用的小技巧,不敢獨享,介紹給你們。
1.
訂閱菜單
訂閱對於博客的做用很是重要,
提供訂閱功能,
有利於讓讀者獲取博客的最新內
容,
幾乎全部的博客都提供了訂閱功能。
如何在更醒目的地方提示讀者訂閱,
同
時可以便捷的訂閱到各大流行
RSS
訂閱網站,
讓每一個博主都費了一番心思,
這裏
給你們提供一個方法。
在「後臺管理
->
設置
->
公告」添加這段代碼。(記得將代碼中的
「http://feeds.feedburner.com/lloydsheng」改成你博客的
RSS
地址)。
<a
href="http://www.zhuaxia.com/add_channel.php?url=http://feeds.feedbur
ner.com/lloydsheng" target=_blank>
<IMG style="MARGIN-BOTTOM: 3px" border=0 alt=
抓蝦
vspace=2
src="http://img.feedsky.com/images/icon_subshot01_zhuaxia.gif">
</a>
<br/>
<a
href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.co
m/lloydsheng" target=_blank>
<img style="MARGIN-BOTTOM: 3px" border=0 alt="google reader" vspace=2
src="http://img.feedsky.com/images/icon_subshot01_google.gif">
</a>
<br/>
<a
href="http://www.xianguo.com/subscribe.php?url=http://feeds.feedburne
r.com/lloydsheng" target=_blank>
<IMG style="MARGIN-BOTTOM: 3px" border=0 alt=
鮮果
vspace=2
src="http://img.feedsky.com/images/icon_subshot01_xianguo.gif">
</a>
<br/>
<a
href="http://inezha.com/add?url=http://feeds.feedburner.com/lloydshen
g" target=_blank>
<IMG style="MARGIN-BOTTOM: 3px" border=0 alt=
哪吒
vspace=2
src="http://img.feedsky.com/images/icon_subshot01_nazha.gif">
</a>
<br/>
<a
href="http://mail.qq.com/cgi-bin/feed?u=http://feeds.feedburner.com/l
loydsheng" target=_blank>
<IMG style="MARGIN-BOTTOM: 3px" border=0 alt=QQ
郵箱
vspace=2
src="http://img.feedsky.com/images/icon_subshot01_qq.gif">
</a>
<br/>
2.
代碼高亮
代碼高亮對於喜歡貼代碼的朋友是一個不可少的功能,
好的代碼高亮不只能使你
的文章變得美觀,
也能讓讀者方便的獲取到文章中的代碼。
我不知道博客園默認
提供哪一種的代碼高亮組件,可是我用本身用着舒服的。
這個高亮組件是「dp.SyntaxHighlighter」,
它本來是一個
wordpress
插件,
我
將它全部的
js
文件壓縮爲一個文件,而後只須要在咱們博客頁面引用一個
30
多
K
的
js
文件就能夠了。
具體的操做是在「後臺管理
->
設置
->
頁腳
Html
代碼」添加下面一段
js
代碼:
<script type="text/javascript"
src="http://files.cnblogs.com/lloydsheng/lighter.js"></script>
<script type="text/javascript">
dp.SyntaxHighlighter.HighlightAll('code');
</script>
使用這個組件的方法比較簡單,看下面代碼:
<pre name="code" class="[language]">
你的代碼
...</pre>
。
不一樣語言的代碼
language
參數不一樣,
若是是使用我壓縮好的
js
代碼話,
language
參數能夠選擇
sql
,
cpp
,
vb
,
xml
,
css
,
javascript
,
java
,
ruby
,
python
,
dephi
,
csharp
。通常的博客應該夠用了吧。
這個方法不限於博客園的博客,也不限於
dp.SyntaxHighlighter
高亮組件,你
能夠根據你的須要去自定義。
3.
懶人評論
看你博客的懶人也許不少,想要讓他們看完文章後耐心的評論一下,估計很難。
而你若是又很在意評論數量的話,不妨試試這個方法。
在「後臺管理
->
隨筆
->
維護簽名」修改默認簽名,添加下面一段代碼
<div>
<input type="button" name="article_support" value="
支持
"/>
<input type="button" name="article_pass" value="
飄過
"/>
</div>
簽名修改完後,
還須要在「後臺管理
->
設置
->
頁腳
Html
代碼」添加下面一段
js
代碼:
<script language="javascript">
$(function(){
$("input[name=article_support]").click(function(){
$("textarea[class=comment_textarea]").val("
文章不錯,支持一下!
");
PostComment();
});
$("input[name=article_pass]").click(function(){
$("textarea[class=comment_textarea]").val("
飄過
~~");
PostComment();
});
</script>
上面
2
段代碼添加完後,
讀者就能夠在文章後面只點一次按鈕發佈評論,
再懶的
讀者都能作到吧。
4.
版權聲明
寫一篇好的文章不容易,
構思到編寫完,
至少得花去幾個小時,
轉載文章人也許
不能理解。
但不少博主不反對轉載,
只要求註明出處和原文連接。
這裏提供一個
給每篇文章添加原創聲明的方法,
能給轉載文章的人提個醒。
修改默認簽名,添加下面一段代碼:
<div id="AllanboltSignature">
<p
id="PSignature"
style="border-top:
#e0e0e0
1px
dashed;
border-right:
#e0e0e0 1px dashed; border-bottom: #e0e0e0 1px dashed; border-left:
#e0e0e0 1px dashed; padding-top: 10px;padding-right:
10px;padding-bottom: 10px;padding-left: 60px; background:
url(http://images.cnblogs.com/cnblogs_com/lloydsheng/239039/o_copyrig
ht.gif) #e5f1f4 no-repeat 1% 50%; font-family:
微軟雅黑
;
font-size:11px;">
<br />
做者:
<a href="http://www.cnblogs.com/lloydsheng/"
target="_blank">LloydSheng</a>
<br />
出處:
<a href="http://www.cnblogs.com/lloydsheng/"
target="_blank">http://www.cnblogs.com/lloydsheng/</a>
<br
/>
本文版權歸做者和博客園共有,歡迎轉載,但未經做者贊成必須保留此段
聲明,且在文章頁面明顯位置給出原文鏈接,不然保留追究法律責任的權利。
<br/>
該文章也同時發佈在個人獨立博客中
-<a
href="http://lloydsheng.com">LoydShengBlog</a>
。
</p>
</div>
注意:
請根據你的博客,進行相應的修改。
5.
文章推薦
好的文章固然但願你們都能推薦一下,
這個技巧能讓你的文章不會錯過任何一個
可能推薦的機會。
在「後臺管理
->
設置
->
頁腳
Html
代碼」添加下面一段代碼,
<script language="javascript">
$(document).ready(function(){
$("body").prepend($("#div_digg").css({
"position" : "fixed", "right" : "0px", "bottom" : "0px",
"z-index" : "10", "background-color" : "white", "margin" : "10px",
"padding" : "10px", "border" : "1px solid #cccccc"}));
});
</script>
結語
5
個小技巧給各位園友介紹完了,這些小技巧只是給你們博客錦上添花。最最重
要的是博客的內容,那纔是博客的價值所在。