Answers for "wordpress get the_permalink with query parameters"

PHP
4

wordpress get_permalink

// Get post permalink (you can use it inside a wp_query loop)
<?php the_permalink(); ?>
// or
<?php $link = get_the_permalink(); ?>
// outside the loop:
<?php echo get_permalink( $post->ID ); ?>
Posted by: Guest on February-25-2021

Browse Popular Code Answers by Language