Site icon Qaisar Satti's Blogs

wordpress get page url by id

Today we talk about WordPress get the page URL. In this tutorial. First you need the page id to get the page url. We will use get_page_link function to get page url.
Let’s start with our example.

$pageId =  40;
$pageUrl = esc_url( get_page_link( $pageId ) );
Exit mobile version