我想在主页的每个帖子中添加read more
个链接。我在functions.php
文件中使用了一个函数来删除大帖子。
function plugin_myContentFilter($content)
{
// Take the existing content and return a subset of it
return substr($content, 0, 100);
}
add_filter("the_content", "plugin_myContentFilter");
以下是我打电话来显示帖子的代码。
the_content(__('<span class="btn-readmore">Continue Reading</span>', 'myBlog'));
我在主页的每个帖子中都获得了100个字符,但没有阅读更多链接。我知道可以在create-new-post页面添加阅读更多链接,但每次我都不想从那里添加。