Skip to content

Instantly share code, notes, and snippets.

@moabi
Created June 17, 2015 05:24
Show Gist options
  • Save moabi/f207c7a0c5eb9310f07a to your computer and use it in GitHub Desktop.
Save moabi/f207c7a0c5eb9310f07a to your computer and use it in GitHub Desktop.
Redirect if only one post in category - wordpress
function stf_redirect_to_post(){
global $wp_query;
if( is_archive() && $wp_query->post_count == 1 ){
the_post();
$post_url = get_permalink();
// Redirect to post page
wp_redirect( $post_url );
}
}
add_action('template_redirect', 'stf_redirect_to_post');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment