如何检查函数是否被弃用?

时间:2019-10-04 作者:John M

你能告诉我这个代码是不是最新的吗?提前谢谢。

function setmot_turta_notice() {

     if ( is_product() && has_term( array(\'set-turta\',\'set-mot\' ), \'product_cat\' ) ) {
        wc_print_notice( \'Message here!\', \'notice\' );    
    }
}
add_action( \'template_redirect\', \'setmot_turta_notice\' );

1 个回复
SO网友:Star Light

如果你想开发一个插件或主题,你需要一套开发工具包。使用the Developer plugin 安装调试栏和调试监视器。如果是,这些将告诉您哪个函数不推荐使用。

此外,当您开发插件时。你应该阅读WordPress的文档和任何你要集成的插件。它将告诉您函数支持什么版本。将其与您要开发的版本进行比较。

相关推荐

How do I debug a short code?

我正在调试一个短代码。我已经编写了以下函数并将其放置在我的主题函数中。php文件:function michael_function_shortcode() { return \'This is the return\'; } 我对短代码的定义如下:add_shortcode(‘michael’, ‘michael_function_shortcode’); 我在一个页面上添加了短代码:[michael] 我知道函数在那里,因为如果我引入错误,我会收到