我假設你這個網誌已經裝了 dropcase plugin,那麼只有兩個原因:
1. 你沒有啟動。
2. 你的第一段文章沒有用 <p>...</p> 包起來。因為這個外掛程式是找第一段文章的 <p>標籤來修改。
Mark
=================================
請問---> 第一段文章沒有用 <p>...</p> 包起來
是那個檔案的位置。--------(新手請見諒)
那不是檔案,我是說你的文章,用 <> 切換到原始碼模式,看第一段是否有包在 <p> ....</p> 裡面。如果沒有, dropcase 是沒有作用的。
Mark
我是用 ereg function 先去判斷是不是有 <p> 開頭的
再做適合的 code 來處理
所以要改 plugindropcase.class.php
(紅字就是多加的)
function dropcase( $text )
{
$newText = explode("</p>", $text);
// Piece the output back together.
// $bufText = "<div class=\"drop-case\">".$newText[0]."</div>";
if (ereg("^<p>", $newText[0])) { $bufText = str_replace( "<p>", "<p id=\"drop-case\">", $newText[0] );
}
else {
$bufText = ereg_replace("^", "<p id=\"drop-case\">", $newText[0] );
} $bufText .= "</p>";