11 July 2020

How to check if page is exists or not in wordpress ?

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');

No comments:

Post a Comment

How to create youtube videos slider with play and pause option in wordpress?

Create youtube videos slider with play and pause option in wordpress youtube videos slider Use this shortcode:- [punjab_today] function my_...