继续阅读在 Wordpress 中不起作用
Continue reading not working in Wordpress
我的代码遇到了问题 - 我创建了一个自定义页面并将其集成到 Wordpress。在博客部分,我添加了功能:
function new_excerpt_more($more) {
global $post;
return '... <a class="moretag" href="'. get_permalink($post->ID) . '"> continue reading »</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
但是,点击后继续阅读不会显示完整内容post。
你能告诉我去哪里寻找解决问题的方法吗?
谢谢
米雷克
检查内容-single.php 文件。它应该包含 the_content();为了显示完整 post。
我的代码遇到了问题 - 我创建了一个自定义页面并将其集成到 Wordpress。在博客部分,我添加了功能:
function new_excerpt_more($more) {
global $post;
return '... <a class="moretag" href="'. get_permalink($post->ID) . '"> continue reading »</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
但是,点击后继续阅读不会显示完整内容post。
你能告诉我去哪里寻找解决问题的方法吗?
谢谢
米雷克
检查内容-single.php 文件。它应该包含 the_content();为了显示完整 post。