Closed. This question is off-topic. It is not currently accepting answers.admin管理员组文章数量:1290433
Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 3 years ago.
Improve this questionI use the Avada theme, and I have created a child theme (Customweb) for it.
I tried to override the file:
wp-content/themes/Avada/includes/lib/inc/templates/featured-image-first.php
And I try create that file in at:
wp-content/themes/Customweb/includes/lib/inc/templates/featured-image-first.php
But it doesn't work.
Thank you for your help.
Closed. This question is off-topic. It is not currently accepting answers.Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 3 years ago.
Improve this questionI use the Avada theme, and I have created a child theme (Customweb) for it.
I tried to override the file:
wp-content/themes/Avada/includes/lib/inc/templates/featured-image-first.php
And I try create that file in at:
wp-content/themes/Customweb/includes/lib/inc/templates/featured-image-first.php
But it doesn't work.
Thank you for your help.
Share Improve this question edited Jun 17, 2021 at 11:35 Tom J Nowell♦ 61k7 gold badges79 silver badges148 bronze badges asked Jun 17, 2021 at 11:00 David DuongDavid Duong 1135 bronze badges1 Answer
Reset to default 4Child themes let you override templates loaded via WordPress' template loading mechanism, e.g. get_template_part
or the main theme templates such as index.php
and single.php
.
But they can't be used to replace arbitrary PHP files or assets.
If a theme loads a template file using require
or include
, WordPress cannot intercept this and replace it with a child theme version.
If this is the case, then you will need to find an alternative method to achieve your goal. Check with the themes documentation, the author may have provided a method to do this, such as an option or filter, or you may need to fork the theme.
本文标签: How can I override file featuredimagefirstphp of Avada theme
版权声明:本文标题:How can I override file featured-image-first.php of Avada theme 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741495888a2381835.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论