2010-10-13 44 views
0

我無法使用the_excerpt,因爲我需要抓住the_content的第一個5個單詞,並以不同的方式對其進行設置......但僅限於頁面上的第一個帖子。有沒有辦法做到這一點? 謝謝!將style的部分分解爲style?

+0

你在說什麼?我認爲你需要展示一些代碼 – 2010-10-13 16:06:48

回答

0

我很確定你可以在functions.php中編寫一個過濾器函數,它可以用你想要的方式操縱摘錄或內容。

0

是的,有一個過濾器。

function my_content_filter($the_content) { 
    // fiddle with the content here 

    // we only want to run once, so remove yourself right away 
    remove_filter('the_content', 'my_content_filter', 10); 

    return $the_content; 
} 

add_filter('the_content', 'my_content_filter', 10); 

使用is_home()功能做相應的檢查,如果你只希望這在主頁上運行。