Code-Snippets-Functions/Execute a function on a child site/WooCommerce/disable-woocommerce-reviews-dashboard-widget.txt

6 lines
253 B
Text

<?php
function disable_woocommerce_reviews_remove_dashboard_widgets() {
remove_meta_box( 'woocommerce_dashboard_recent_reviews', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'disable_woocommerce_reviews_remove_dashboard_widgets', 40);
?>