Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save braddalton/6144995 to your computer and use it in GitHub Desktop.
Save braddalton/6144995 to your computer and use it in GitHub Desktop.
/**
* @author Brad Dalton WP Sites
* @link http://wpsites.net/blog
*/
function wpsites_custom_post_type_links() {
if( 'portfolio' == get_post_type() && is_single() ) {?>
<?php previous_post('&laquo; &laquo; %', 'Previous Slide Show', 'no'); ?>
| <?php next_post('% &raquo; &raquo; ', 'Next Slide Show', 'no'); ?>
<?php
} }
add_action('genesis_entry_footer', 'wpsites_custom_post_type_links', 5 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment