Skip to content

Instantly share code, notes, and snippets.

@sudipbd
Last active January 9, 2017 09:26
Show Gist options
  • Save sudipbd/ab6daceccbace34c228a0dfe8244bc6d to your computer and use it in GitHub Desktop.
Save sudipbd/ab6daceccbace34c228a0dfe8244bc6d to your computer and use it in GitHub Desktop.
WordPress custom posts links to author archives
/* Add CPTs to author archives */
function custom_post_author_archive($query) {
if ($query->is_author)
$query->set( 'post_type', array('custom_type', 'post') );
remove_action( 'pre_get_posts', 'custom_post_author_archive' );
}
add_action('pre_get_posts', 'custom_post_author_archive');
<?php the_author_posts_link(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment