You Should Know This
-
This plugin adds something to your dashboard. It feeds from the developer’s website and does not identify itself as part of the plugin.
It is just called “Important News you must read”, and in essence it is just a traffic generator for the developer’s site.
Here’s the code and you should remove it from the plugin unless you want it:
// add a custom dashboard widget wp_add_dashboard_widget( 'dashboard_custom_feed', 'Important News you must read', 'dashboard_da_custom_feed_output' ); //add new RSS feed output } function dashboard_da_custom_feed_output() { echo '<div class="rss-widget">'; wp_widget_rss_output(array( 'url' => 'https://feeds.feedburner.com/designaeon', 'title' => 'What\'s up at Design Aeon', 'items' => 10, 'show_summary' => 1, 'show_author' => 0, 'show_date' => 1 )); echo "</div>"; }
https://www.ads-software.com/extend/plugins/wp-max-social-widget/
- The topic ‘You Should Know This’ is closed to new replies.