I have trouble about the notice shows on the top of the home page as:
Notice:
load_plugin_textdomain
was called with an argument that is deprecated since version 2.7 with no alternative available. in.../wordpress/wp-includes/functions.php
on line 2925
The code of this line is something about $wpsmiliestrans
:
';)' => 'icon_wink.gif',
If I delete this code, it will show the problem on line 2924, which is another code about smilies, and there are dozens of these type of code. How can I get rid of this?
I have updated the software to the latest version.
';)' => 'icon_wink.gif',
is in line 2477 in the current version, you should never just change or delete core files, unless you know how to run a private branch of WordPress.Line 2925 is the second
trigger_error()
in this function:Thatâs just the place where the notice is, not the place of your error.
Letâs look at
load_plugin_textdomain()
; here is the real problem:The error message you get can be translated as:
The plugin is five years behind the current standard.
Solution