php中的取消链接函数

发布于 2024-10-15 01:57:12 字数 116 浏览 3 评论 0原文

是否可以删除用户定义的功能?

我的 CMS 有一项功能,我想通过添加来更新该功能。

尝试向主题的代码添加一些代码,这将使我的代码仅在打开该主题时才工作。

Is it possible to erase user-defined function?

My CMS has one function, which I want to update with additions.

Trying to add some code to theme's code, that would make my code work only when this theme is switched on.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

只为守护你 2024-10-22 01:57:12

尝试 rename_function() 重命名您想要覆盖的函数其他的,然后在原来的名称下写函数。

Try rename_function() to rename the function you want to override to something else and then write the function under the original name.

你另情深 2024-10-22 01:57:12

在选择所需的主题之前,请勿包含或启动该代码。

我的来自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();
}

Do not include or launch that code until the required theme is chosen.

My code for Default Theme from functions.php:

<?php
function sample()
{
    // the specific code here
}

Somewhere in the theme bootstrapping:

<?php
include 'functions.php';
sample();

// OR inside a theme.

if ($theme_name == 'default')
{
    // Call the function
    sample();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文