Notice: There is no legacy documentation available for this item, so you are seeing the current documentation.
Purpose
This filter can be used to control the display of All in One SEO’s dashboard widget.
Arguments (1)
- $enabled (boolean) – Whether the dashboard widget should be displayed. Defaults to true.
Example code snippet
The code snippet below is just an example of how this filter can be used. In the example below, the display of the dashboard widget is disabled.
add_filter( 'aioseo_show_seo_news', 'aioseo_disable_dashboard_widget' );
function aioseo_disable_dashboard_widget( $enabled ) {
return false;
}