Skip to content

Instantly share code, notes, and snippets.

View funteractive's full-sized avatar

Keisuke Imura funteractive

View GitHub Profile
@funteractive
funteractive / functions.php
Created June 7, 2013 22:13
Display $wp_query on front page of WordPress
<?php
add_filter( 'pre_get_posts', 'query_debug' );
function query_debug( $wp_query ){
var_dump( $wp_query );
exit;
}