Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够为每篇博客文章编写自己的摘录,而不是摘录博客文章的前几行。我已经搜索了 WordPress 文档,但还没有找到一种方法来做到这一点。
function html5wp_index($length) { return 50; }
这是我用来调用摘录的代码。
摘录已启用,但默认情况下对帖子隐藏。要使它们可见,请打开任何帖子。然后,您可以通过单击右上角的屏幕选项并选中“摘录”选项来显示“摘录”字段。
如果您想为页面(或任何其他自定义帖子类型)做同样的事情,您可以将此代码添加到您的 functions.php 文件中:
add_post_type_support( 'page', 'excerpt' );