Skip to content

Instantly share code, notes, and snippets.

@jesgs
Last active August 14, 2024 20:11
Show Gist options
  • Save jesgs/cc08135dc87cf6c59d7c243e9eb398ae to your computer and use it in GitHub Desktop.
Save jesgs/cc08135dc87cf6c59d7c243e9eb398ae to your computer and use it in GitHub Desktop.
<?php
/**
* View queries generated by ElasticPress
*/
function ep_log_query_to_screen( $formatted_args, $args, \WP_Query $wp_query ) {
static $count;
$count ++;
if ( ! $wp_query->is_search() || $count > 1 ) {
return $formatted_args;
}
echo "<pre style='font-size: 0.75rem; height: 300px; width: 50%; overflow: auto; background-color: #eeeeee; margin: 25px 25px 25px 200px; padding: 10px;'>";
echo json_encode( $formatted_args, JSON_PRETTY_PRINT );
echo "</pre>";
return $formatted_args;
}
add_filter( 'ep_post_formatted_args', 'ep_log_query_to_screen', 555, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment