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