• Hello!

    Who can help me with this alert in my “custom plugin menue” in the settings menue:

    Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘plugin_options_page’ not found or invalid function name in /www/htdocs/w014adb5/deutsches-gedenken.de/wp-includes/class-wp-hook.php on line 286

    What does it mean and what effect does it have to my site? I remarked some bugs in the mobile performance (responsive menue), could this occur because of this warning?

Viewing 2 replies - 1 through 2 (of 2 total)
  • It’s unlikely to have any actual effect. It’s just a warning about some invalid code. Somewhere in your code you have code like this:

    add_action( 'SOMETHING', 'plugin_options_page' );
    

    With code like that, WordPress will try to run a function called plugin_options_page(). The error your seeing is telling you that this function does not exist. If you don’t need it, delete the line that looks like the one above, or correct it so that it’s referring to a function that does exist.

    Thread Starter susilein

    (@susilein)

    Oh this is good. Thanks for your support ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Alert in custom plugin menue’ is closed to new replies.