check if page is exists or not in wordpress.
function pagecheck(){
$pagetitle = 'Sample Pagee';
$page = get_page_by_title( $pagetitle, OBJECT, 'page' );
$pageid = $page->ID;
if($pageid){
//echo "Exist";
}
else
{
echo "not Exist";
}
}
add_action('admin_head','pagecheck');
Comments
Post a Comment