Which of the following is the correct way to get
WordPress Post ID from the Post title?
Answers:
1.
$page = get_page_title(
‘About’ ); wp_pages( ‘exclude=’ . $page->ID );
2.
$page
= get_page_by_title( ‘Home’ ); $page_id = $page->ID;
3.
$page =
get_page_by_title( ‘About’ ); wp_pages( ‘exclude=’ . $page->ID );
4.
None of the above