有相当多的功能,我的主题也是如此,即使有所有的评论,它也会变得有点混乱。此外,每次更新主题时,都会显示新功能。php文件将替换当前文件。
所以,它变成了一种痛苦。
因此,我想,是否有可能有第二/第三个功能。php文件?使用PHP include或require函数。这样,我可以对函数进行分类,它们不会在主题更新时受到影响。
所以
<?php include \'functions_1.php\' ?>
谢谢你,
最合适的回答,由SO网友:obiPlabon 整理而成
您可以通过使用子主题来摆脱主题更新的情况。您的子主题将作为您经常更新的父主题的扩展。有关子主题的更多信息,请访问here.
但如果您不想使用子主题,那么可以添加任意多的附加函数文件。一位常客include
或require
很好用。可以使用相对路径包含文件,也可以使用get_template_directory()
用于绝对路径的函数。比如说
include get_template_directory() . \'/inc/functions-1.php\'; // if it\'s inside inc directory
include get_template_directory() . \'/functions-1.php\'; // Or if it\'s not inside any directory