是否可以删除用户定义的功能?
我的CMS有一个功能,我想用附加功能更新。
尝试在主题代码中添加一些代码,这将使我的代码仅在打开此主题时起作用。
答案 0 :(得分:2)
尝试rename_function()将要覆盖的功能重命名为其他功能,然后以原始名称编写该功能。
答案 1 :(得分:0)
在选择所需主题之前,请勿包含或启动该代码。
我在functions.php中的默认主题代码:
<?php
function sample()
{
// the specific code here
}
主题引导中的某个地方:
<?php
include 'functions.php';
sample();
// OR inside a theme.
if ($theme_name == 'default')
{
// Call the function
sample();
}