我想说你要找的是having functions.php as a plugin. 这使得它可以移植,无论您使用的主题是什么。最简单的方法是创建一个新文件(类似my woocommerce functions.php),然后从以下内容开始:
<?php
/**
* Plugin Name: My Custom WooCommerce Functions
* Plugin URI: http://example.com
* Description: My Custom WooCommerce Functions
* Author: Your Name
* Author URI: http://example.com
* Version: 1.0.0
*/
/* Place custom code below this line. */
require get_template_directory() . \'/woocommerce/storefunctions/woocommerce-overrides.php\';
?>
现在您有了一个插件,可以从仪表板激活和停用该插件。您必须只关注文件路径(如果不使用get\\u template\\u directory()函数)。