admin管理员组

文章数量:1290433

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 question

I 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 question

I 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 badges
Add a comment  | 

1 Answer 1

Reset to default 4

Child 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