I have some divs in a sidebar.php template that I only want to appear on the index.php page, not on other pages like single or archive. I'm trying to use something like these scripts in the sidebar.php template but they're not working.
<?php if ($_SERVER['SCRIPT_NAME'] == '/index.php'): ?>
<div>
</div>
<?php endIf; ?>
or
<?php if ( $_SERVER['PHP_SELF'] == '/index.php' ) { ?>
<div>
</div>
<?php } ?>
Can anyonoe tell me how to do this? Thanks!