Created
October 12, 2016 14:34
-
-
Save sparkalow/20846716e6e8e39533f5e4d5aaeda2d6 to your computer and use it in GitHub Desktop.
Wordpress dump post query sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function dump_request( $input ) { | |
var_dump($input); | |
return $input; | |
} | |
add_filter( 'posts_request', 'dump_request' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment