Last active
January 9, 2017 09:26
-
-
Save sudipbd/ab6daceccbace34c228a0dfe8244bc6d to your computer and use it in GitHub Desktop.
WordPress custom posts links to author archives
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php the_author_posts_link(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment