Wordpress阅读更多链接the_content

时间:2018-01-14 12:32:28

标签: wordpress

我想在主页的每个帖子中添加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页面添加阅读更多链接,但每次我都不想从那里添加。

0 个答案:

没有答案