Skip to content

Instantly share code, notes, and snippets.

@zartgesotten
Created February 20, 2019 10:35
Show Gist options
  • Save zartgesotten/a85588426d81e2d8779f91f5286ba29f to your computer and use it in GitHub Desktop.
Save zartgesotten/a85588426d81e2d8779f91f5286ba29f to your computer and use it in GitHub Desktop.
if ( ! is_admin() ) {
add_filter(
'query_vars',
function ( $public_query_vars ) {
foreach ( array( 'author', 'author_name' ) as $var ) {
$key = array_search( $var, $public_query_vars );
if ( false !== $key ) {
unset( $public_query_vars[$key] );
}
}
return $public_query_vars;
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment