• I am new to WP. I have background layer in a DIV. and on that background DIV slider will run.
    Know what I want not to show that background DIV on inner page. I just want to show it on Home page.
    How can I do it in WP and not to show that DIV on inner pages.
    Second I want to use breadcrumbs on inner pages.
    PLZZ HElP me

Viewing 4 replies - 1 through 4 (of 4 total)
  • You can target the home page in your template files by using either a new file called front-page.php for your sites home page, or by adding this bit of code into your template file:

    <?php if (is_front_page ()): ?>
        <div id="homepage_only">Load your homepage-only elements in here.</div>
    <?php endif; ?>
    Thread Starter kuhashmi

    (@kuhashmi)

    Ok thanks will tr this one. Can i also call Slider in that code ?

    Add this code where you want to show the slider:

    <?php if(is_front_page() or is_page(‘home-page-title’)) { ?>
    <div class=”slider-div”>
    Add slider code here
    </div>
    <>php } ?>

    Thread Starter kuhashmi

    (@kuhashmi)

    Thanks Will this also work for Shortcodes. Like lot of plugins give you shortcode to place there shortcode. So It can works.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘want to show Background DIV only show on Home Page’ is closed to new replies.