Skip to content

Instantly share code, notes, and snippets.

@kovshenin
Created October 16, 2012 13:32
Show Gist options
  • Save kovshenin/3899308 to your computer and use it in GitHub Desktop.
Save kovshenin/3899308 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'request', 'my_request' );
function my_request( $request ) {
$request['tag'] = 'my-tag-slug';
return $request;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment