如何重写pluggable中的函数。php?
我已经尝试制作自己的插件——在已经定义的函数上出现了致命错误。
我尝试了函数。php在我的主题中——得到了白色屏幕。
是否可以覆盖可插拔的。php函数而不触及源代码文件本身?
谢谢
Here is the function I wish to override (located in ../wp-includes/pluggable.php):
if ( !function_exists(\'wp_new_user_notification\') ) :
/**
* Notify the blog admin of a new user, normally via email.
*
* @since 2.0
*
* @param int $user_id User ID
* @param string $plaintext_pass Optional. The user\'s plaintext password
*/
function wp_new_user_notification($user_id, $plaintext_pass = \'\') {
...
}