How to customize the critical error message?

How to customize the critical error message saying:

There has been a critical error on your website.

Learn more about debugging in WordPress.

Instead of using CSS to hide the message it would be interesting to be able to point the link to another source than the community article.

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

You can use the wp_php_error_message filter to customise this message:

add_filter(
    'wp_php_error_message',
    function( $message, $error ) {
        return 'My custom message.';
    },
    10,
    2
);

I haven’t tested to be sure, but I would assume that if the critical error that causes this message happens to be in the code of same theme or plugin that this filter is used in, or a theme or plugin loaded before it, then this filter would likely not apply.

If you want to change this message independently of your theme and plugins, this might be a good use case for a Must Use Plugin.


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x