Skip to content

Instantly share code, notes, and snippets.

@searchwpgists
Created April 12, 2022 15:08
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/4048f09fef581011542688045c46d70d to your computer and use it in GitHub Desktop.
Save searchwpgists/4048f09fef581011542688045c46d70d to your computer and use it in GitHub Desktop.
<?php
// @link https://searchwp.com/documentation/classes/searchwp-statistics/
// Retrieve the most commmon searches for the
// Default engine from the past thirty days.
$statistics = \SearchWP\Statistics::get_popular_searches( [
'days' => 30,
'engine' => 'default',
] );
// Display the results in a <table>.
\SearchWP\Statistics::display( $statistics );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment