Wordpress - How do I get the permalink of a custom post type?
How about href="<?php echo get_post_type_archive_link( $post_type ); ?>"
, where $post_type
is your post type?
Further reading: Codex
Within the loop, you can simply use the_permalink()
. Outside of the loop, you can use get_permalink( $id )
.