@ootes
14 years, 11 months ago
Currently i have a sidebar inside my ‘footer.php’ .
Inside my sidebar, i have a ‘latest post’ widget.
The latest post widget needs to be shown only on the front-page.
kan someone help me out?
@nightgunner5
Put <?php if ( bb_is_front() ) { ?> before the widget and <?php } ?> after it.
<?php if ( bb_is_front() ) { ?>
<?php } ?>
many thanx ,