How to get permalink from specific page in WordPress

Posted on: February 13th, 2024
By: Tadeo Martinez

<?php
if ( is_page( 24 ) ) {
    $page_url = get_permalink( 24 );
    echo "The URL of page 24 is: " . esc_url( $page_url );
}
?>

Have any questions or comments? Write them below!


Leave a Reply

Your email address will not be published. Required fields are marked *