我无法使用the_excerpt,因为我需要抓取the_content的第一个,比如5个单词,并以不同的方式设置样式..但仅限于页面上的第一个帖子。有没有办法做到这一点? 谢谢!
答案 0 :(得分:1)
哇哇叽叽喳喳来了;) 显然有一个功能可以抓住内容而不会回显, 所以这里有链接,如果其他人偶然发现这个。 http://codex.wordpress.org/Function_Reference/get_the_content
答案 1 :(得分:0)
我非常确定你可以在functions.php中编写一个过滤函数来操作摘录或内容,无论你想要的是什么。
答案 2 :(得分: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()
功能进行相应的检查。