Answers for "check if conditional in page wordpress"

PHP
0

wordpress check if page

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

wordpress if is in categroy

// Find out in Wordpress if a single/page is in a chosen category
if (in_category('fruit')) {
    echo "This single/page is in category 'fruit'.";
}
Posted by: Guest on May-18-2021

Code answers related to "check if conditional in page wordpress"

Browse Popular Code Answers by Language