Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 wordpress 新手,我想知道在 wordpress 中在哪里编写自定义库函数?
这有一个特定的文件,我也应该添加它,或者以特定的方式?
例如 get_latest_news() 这样的函数将在我的许多小部件中使用。
如果您打开主题 functions.php 文件,您可以在其中包含您的自定义函数,
或使用
include('custom-functions.php');
这将加载文件并将其与您的标准 wordpress 功能分开。