Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End If is home page get stuff.php

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #195103
    amidigital
    Participant

    Having trouble understanding syntax.

    <?php if ( is_home ( get_template_part(‘slider/stuff’))); ?>

    This is pulling for every page, just want to pull for home page.

    Thank You!

    #195106
    Senff
    Participant

    Try this:

    <?php 
    if ( is_home() ) {
        get_template_part(‘slider/stuff’); 
    }
    ?>
    
    #195108
    amidigital
    Participant

    Perfect! Thank you.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Back End’ is closed to new topics and replies.