Closed. This question is off-topic. It is not currently accepting answers.admin管理员组文章数量:1391998
Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?
Closed 5 years ago.
Improve this questionI want to remove "read more" in the next code:
<?php the_excerpt(); ?>
Is it possible to do in the PHP line directly or I need a filter in funtions.php? I am want to do one by one in PHP query not for all.
Closed. This question is off-topic. It is not currently accepting answers.Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?
Closed 5 years ago.
Improve this questionI want to remove "read more" in the next code:
<?php the_excerpt(); ?>
Is it possible to do in the PHP line directly or I need a filter in funtions.php? I am want to do one by one in PHP query not for all.
Share Improve this question asked Nov 27, 2019 at 1:18 nabukenabuke 231 silver badge3 bronze badges 1 |1 Answer
Reset to default 0I asked to author theme. It was by filter from functions.php
本文标签: theme developmentExclude read more in theexcerpt
版权声明:本文标题:theme development - Exclude read more in the_excerpt 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744757444a2623547.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
the_excerpt()
doesn't output "read more" by default. If it's appearing then your theme would be adding it, and you'd need to remove the filter from functions.php. The specifics would depend on the theme. I suggest asking its author. – Jacob Peattie Commented Nov 27, 2019 at 1:27