Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created March 25, 2022 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save searchwpgists/5078bd9d919d30adf2621a6970154dd8 to your computer and use it in GitHub Desktop.
Save searchwpgists/5078bd9d919d30adf2621a6970154dd8 to your computer and use it in GitHub Desktop.
Consider 7 days instead of 30 when displaying Statistics Dashboard Widget.
<?php
// Consider 7 days instead of 30 when displaying Statistics Dashboard Widget.
add_filter( 'searchwp\admin\dashboard_widgets\statistics\days', function( $days ) {
return 7;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment