Dashboard Error: A feed could not be found at `https://reduxframework.com/feed/`
-
The error is appearing twice in our logs each time the admin dashboard is visited. Can you please resolve this?
PHP Notice: A feed could not be found at https://reduxframework.com/feed/; the status code is 404 and content-type is text/html in wp-includes/class-simplepie.php on line 1728
As a workaround, I’ve added the following to my theme’s functions.php file…
/** * Remove dashboard items */ function fetchDeclutterDashboard() { global $wp_meta_boxes; // Broken feed from wp-mail-logging plugin unset($wp_meta_boxes['dashboard']['side']['high']['redux_dashboard_widget']); } add_action('wp_dashboard_setup', 'fetchDeclutterDashboard');
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Dashboard Error: A feed could not be found at `https://reduxframework.com/feed/`’ is closed to new replies.