Why isn’t is_page working when I put it in the functions.php file?

I have page called “Apple”, the page’s ID id 2533.

In page.php file I have line:

Read More
echo $bannerimg 

And this function in functions.php:

if ( is_page( '2533' ) ) {    
    // also tested with 'Apple'
    $bannerimg = 'apple.jpg';

} elseif ( is_page( 'test' ) ) {    
    $bannerimg = 'test.jpg';

} elseif ( is_page( 'admissions' ) ) { 
    $bannerimg = 'admissions.jpg';

} else { 
    $bannerimg = 'home.jpg';
}  

The point is the $bannerimg echoes “home.jpg” on every page, including Apple, test and admissions.

I’ve even checked all the IDs using the_ID & $page->ID. Nothing. So I guess there’s something wrong with the code above?

Related posts

Leave a Reply

9 comments

  1. functions.php is processed way before you can know which page is being loaded. Instead of assigning value to variable put your code into function and use that function in page.php template.

  2. get_header should work if you want to leave it in functions.php

    add_action('get_header', function() {
        if ( is_page( '2533' ) ) {    
        // also tested with 'Apple'
            $bannerimg = 'apple.jpg';
    
        } elseif ( is_page( 'test' ) ) {    
            $bannerimg = 'test.jpg';
    
        } elseif ( is_page( 'admissions' ) ) { 
            $bannerimg = 'admissions.jpg';
    
        } else { 
            $bannerimg = 'home.jpg';
        }  
    });
    
  3. Extending what @Rarst posted and you commented , a more elegant solution would be to create your own filter inside page.php and hook to it from a function inside the functions.php, for example:

    in you page.php

    $bannerimg = apply_filters('my_bannerimg','defualt_img.jpg');
    

    and in your functions.php

    add_filter('my_bannerimg','what_page_is_it');
    
    function what_page_is_it($img){
        if ( is_page( '2533' ) ) {    
            return 'apple.jpg';
        } elseif ( is_page( 'test' ) ) {    
            return 'test.jpg';
        } elseif ( is_page( 'admissions' ) ) { 
            return 'admissions.jpg';
        } else { 
            return 'home.jpg';
        }  
    }
    
  4. Add this to your functions.php, change name of script someCode and name of page:

       add_action('wp_enqueue_scripts', 'wpt_theme_js');
    
        function wpt_theme_js() { 
            if ( is_page('somePage') ) {
                wp_enqueue_script('someCode_js', get_template_directory_uri() . '/js/someCode.js', '', '', true);
            }
        }
    
  5. You need to call your function at a point in the WordPress process after the Query is set up.

    In functions.php:

    function mytheme_get_banner_img() {
        if ( is_page( '2533' ) ) {    
            // also tested with 'Apple'
            $bannerimg = 'apple.jpg';
    
        } elseif ( is_page( 'test' ) ) {    
            $bannerimg = 'test.jpg';
    
        } elseif ( is_page( 'admissions' ) ) { 
            $bannerimg = 'admissions.jpg';
    
        } else { 
            $bannerimg = 'home.jpg';
        }  
        return $bannerimg;
    }
    

    Then, in your page.php template file, wherever you need to return/output $bannerimg:

    <?php
    $bannerimg = mytheme_get_banner_img();
    ?>
    

    Then, you can do whatever you need to with $bannerimg: drop it in an <img> tag, etc.

  6. Have you correctly declared wp_head(); etc in your theme?

    Also, is_page accepts an ID without quotes.

    The problem may also be the fact you are already on the page template so it is a page, you may be better of querying the $post->ID or set up page-apple.php

  7. if( is_page('Vehicle') ) {
        // code here
    }
    

    this will definitely work on page.php file please move there and check.

    [NB]: // replace your page id | slug | array with Vehicle

  8. You need to hook the wp function.

    Important note: Note that if you hook to the init function, is_page will not work

    add_filter('wp', 'pre_fix_function_is_page');
    
    function pre_fix_function_is_page()
    {
    
        if ( is_page( '2533' ) ) {
            // also tested with 'Apple'
            $bannerimg = 'apple.jpg';
    
        } elseif ( is_page( 'test' ) ) {
            $bannerimg = 'test.jpg';
    
        } elseif ( is_page( 'admissions' ) ) {
            $bannerimg = 'admissions.jpg';
    
        } else {
            $bannerimg = 'home.jpg';
        }
    }