我無法使用the_excerpt,因爲我需要抓住the_content的第一個5個單詞,並以不同的方式對其進行設置......但僅限於頁面上的第一個帖子。有沒有辦法做到這一點? 謝謝!將style的部分分解爲style?
0
A
回答
0
我很確定你可以在functions.php中編寫一個過濾器函數,它可以用你想要的方式操縱摘錄或內容。
1
哦哇嘰嘰喳喳通過;) 顯然有一個功能,抓住內容沒有它呼應, 所以這裏是鏈接,如果其他人絆倒在這。 http://codex.wordpress.org/Function_Reference/get_the_content
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()
功能做相應的檢查,如果你只希望這在主頁上運行。
相關問題
- 1. un-style部分組件
- 2. 將百里香分爲<style>< /style>
- 3. 將CSS STYLE設置爲RadioButtonList
- 4. 爲什麼style命令在noscript部分內不起作用?
- 5. list style menu wordpress style css
- 6. Table style in table style inherit mess
- 7. 無法解析@ style/Theme.AppCompat.Light.NoActionBar
- 8. undefined style
- 9. linkbutton style
- 10. Json4s'linq-style'爲理解提供空列表
- 11. WPF Metro design:如何將Style Case應用於Style?
- 12. 將<style>設置爲禁用
- 13. webpack可以將CSS封裝到HTML中作爲<style></style>?
- 14. document.getElementById(「xxx」)。style
- 15. Primefaces facet footer style
- 16. ngClass style with key
- 17. Angular JS ng-style
- 18. Rails:GoogleDocs-Style Autosave
- 19. style css table td
- 20. WPF ItemTab Style
- 21. AngularJs ng-style ::
- 22. style =「display:none」not working
- 23. WPF XAML Style Gallery
- 24. Magento Admin Chart Style
- 25. style SegmentedButton Sencha
- 26. QT Style Comments(Intellisense?)
- 27. className:hover #myID {style}
- 28. wpf style cascade
- 29. Android - ActionBar Compat Style
- 30. Facebook App Style UIImageView
你在說什麼?我認爲你需要展示一些代碼 – 2010-10-13 16:06:48