Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘add_custom_scripts’ not found or invalid function name

add_action takes a valid callable function as second parameter. WordPress is unable to find add_custom_scripts function which is being used to add some custom scripts probably, may be its not defined anywhere. You might have to look into fucntions.php file of your active theme/child-theme, find the add_action where second parameter is passed add_custom_scripts. There are … Read more

Site title not showing. Please help me

Use this code in Header.php file. <title><?php wp_title(‘ – ‘, true, ‘right’); ?></title> But as per page view source code.you have forgot to close tag above tag in header. so please close tag. see this screenshot Should code like this: <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag(‘js’, new Date()); </script> <title><?php wp_title(‘ – … Read more

WordPress Error blank page In section website

To be honest, there is probably not too much we can help with without looking the code and determining why it’s there in the first place. My recommendation would be to find this function get_mental_seo_description() and comment it and see if that helps.

WordPress error when update to new version

The Gutenberg editor is from WordPress 5.0 part of the core code. After the WordPress update, you have two WP_REST_Blocks_Controller class definitions, one in WP core code, second in plugin. Disable Gutenberg plugin by changing the name of the directory or removing it.