我在拔头发。我已经搜索了一个又一个从我的帖子中删除“阅读更多”链接的方法(全文,不是摘录)。我尝试添加下面的过滤器(以及functions.php中的其他代码),并在web上的许多地方进行了推广。该过滤器可以将摘录转换为完整内容的帖子,但同样的过滤器也应该将阅读更多的文本设置为null。这是我正在使用的。
/**
* Redefine sinatra_excerpt function.
*
*/
function sinatra_excerpt( $length = null, $more = null ) {
the_content();
}
此功能部分起作用,因为它会显示完整的帖子,而不仅仅是摘要。只是多出一美元的部分不起作用。值得一提的是,我还尝试了各种CSS示例,直到我脸色发青,大多数都是在各种元素上使用“display:none”。
I have searched the entire batch of files related to the Sinatra Theme for the string “Read More” and cannot find a single instance of it. If I could find that, I could just replace that with an empty string or otherwise alter the code. Does anyone know where it is?
注意:帖子是在分类页面上生成的。感谢您提供的任何见解。