Skip to content

Instantly share code, notes, and snippets.

@kaweski
Created October 27, 2016 19:42
Show Gist options
  • Save kaweski/01e731f86a585724b86de37f608cbf98 to your computer and use it in GitHub Desktop.
Save kaweski/01e731f86a585724b86de37f608cbf98 to your computer and use it in GitHub Desktop.
Verifica o post type
$post_type = $_GET['qd_type'];
if ( $post_type == 'qd_opportunity' ) {
global $wp_query;
$args = array_merge( $wp_query->query_vars, array( 'post_type' => $post_type ) );
query_posts( $args );
}
<?php
/**
*
* Autor
*
*/
$user_slug = get_the_author_meta( 'user_nicename' );
$user_url = home_url('author/') . $user_slug . '/?qd_type=qd_opportunity'; ?>
<a href="<?php echo $user_url; ?>"><?php echo get_the_author_meta( 'display_name' ); ?></a>
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment