Results 1 to 3 of 3

Thread: Modifying page.php of my template so page heading does not appear on new welcome page

  1. #1
    kathymac is offline Hello World
    Join Date
    Nov 2010
    Posts
    16

    Default Modifying page.php of my template so page heading does not appear on new welcome page

    Hi

    I have a wp theme installed at: http://winyourway.ca/NewWebsite/.

    I would like the heading "Welcome" not to appear if the home page is displayed
    (page_id 378).

    Inside my page.php code, I have the following code, but something is not correct and I can't figure out what I have done wrong. The "Welcome" heading still appears:

    Orig code:
    <h2 class="title">
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php
    the_title(); ?></a></h2>

    My code:
    <?php
    if (page_id != 378)
    {
    ?>
    <h2 class="title">
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php
    the_title(); ?></a></h2>
    <?php
    }
    ?>

  2. #2
    Jurre's Avatar
    Jurre is offline Hello World
    Join Date
    Aug 2010
    Location
    The Netherlands
    Posts
    8

    Default

    First of all, "page_id" is not even a proper PHP variable, that would be "$page_id". Second, why do you think the ID of the current page would be in $page_id, a random local variable you just created yourself?

    This is what you need.

  3. #3
    chipbennett's Avatar
    chipbennett is offline WordPress Legend
    Join Date
    Feb 2009
    Location
    St. Louis, MO
    Posts
    1,997

    Default

    Quote Originally Posted by Jurre View Post
    First of all, "page_id" is not even a proper PHP variable, that would be "$page_id". Second, why do you think the ID of the current page would be in $page_id, a random local variable you just created yourself?

    This is what you need.
    And even more direct, use is_front_page().
    WP TurnKey - Turn-Key WordPress installation and maintenance services
    WordPress user since 2005 | @chip_bennett | chipbennett.net | cbnet Plugins

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •