the_permalink() code example
Example 1: wordpress loop permalink
<?php echo get_post_permalink() ?>
Example 2: wordpress get_permalink
// Get post permalink (you can use it inside a wp_query loop)
<?php the_permalink(); ?>
// or
<?php $link = get_the_permalink(); ?>