我需要使用木材Wordpress覆盖Woocommerce的页面模板位置。
所有页面模板都存储在主题根文件夹中,我想移动woocommerce文件 (如 single-product.php )到自定义子文件夹。
该文件夹应位于同一主题(my-theme / custom / single-product.php)
我在google上阅读过,但未能找到明确的答案。 感谢
答案 0 :(得分:1)
<?php
/* functions.php */
Timber::$dirname = array( 'templates', 'templates/woo-templates');
http://timber.github.io/timber/#changing-the-default-folder-for-twig-files
上面的代码首先会在templates
中查找,然后在woo-templates
子目录中查找.twig模板