Skip to content

Instantly share code, notes, and snippets.

@Igosuki
Created May 10, 2019 16:35
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 Igosuki/7660e0477a3b3f658d3121052cfc2127 to your computer and use it in GitHub Desktop.
Save Igosuki/7660e0477a3b3f658d3121052cfc2127 to your computer and use it in GitHub Desktop.
Wordpress widget
<?php
global $wpdb;
$current_user_id = get_current_user_id();
$search_history = $wpdb->get_results("SELECT * FROM {$wpdb->prefix}relevanssi_log WHERE user_id = {$current_user_id} ORDER BY time DESC");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment