Skip to content

Instantly share code, notes, and snippets.

@Shelob9
Created October 8, 2014 06:05
Show Gist options
  • Save Shelob9/f61f317734736ddb0790 to your computer and use it in GitHub Desktop.
Save Shelob9/f61f317734736ddb0790 to your computer and use it in GitHub Desktop.
add_filter( 'json_query_vars', 'slug_allow_meta' );
function slug_allow_meta( $valid_vars ) {
$valid_vars = array_merge( $valid_vars, array( 'meta_key', 'meta_value' ) );
return $valid_vars;
}
//
$url = 'posts?filter[meta_key]=foo&filter[meta_value]=bar';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment