PHP Retrieve Page ID in WordPress using get_page_by_title()

Learn how to use the get_page_by_title() function in WordPress to retrieve the ID of a specific page.

<?php
$page = get_page_by_title('page-name');
if (!empty($page)) {
    $page_id = $page->ID;
}