Answers for "if is page id wordpress"

PHP
0

get the current page id in wordpress

$page_id = get_queried_object_id();
Posted by: Guest on September-03-2020
0

wordpress check if page

<?php
if (is_page( 'Page Title' ) ):
  # Do your stuff
endif;
?>
Posted by: Guest on June-07-2021

Browse Popular Code Answers by Language