更改Wordpress木材模板位置

时间:2015-09-28 07:06:04

标签: php wordpress templates woocommerce twig

我需要使用木材Wordpress覆盖Woocommerce的页面模板位置。

所有页面模板都存储在主题根文件夹中,我想移动woocommerce文件 (如 single-product.php )到自定义子文件夹。

该文件夹应位于同一主题(my-theme / custom / single-product.php)

我在google上阅读过,但未能找到明确的答案。 感谢

1 个答案:

答案 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模板

相关问题