Skip to content

Instantly share code, notes, and snippets.

@greenhornet79
Created October 6, 2014 17:10
Show Gist options
  • Save greenhornet79/972f40460d04703f5408 to your computer and use it in GitHub Desktop.
Save greenhornet79/972f40460d04703f5408 to your computer and use it in GitHub Desktop.
Add IssueM articles to an author's archive page
<?php
function issuem_post_author_archive( &$query )
{
if ( $query->is_author )
$query->set( 'post_type', 'article' );
remove_action( 'pre_get_posts', 'issuem_post_author_archive' ); // run once!
}
add_action( 'pre_get_posts', 'issuem_post_author_archive' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment