Hi,
I've run into some problems with my WordPress theme.
I have some HTML code on my index.php file which I only want to display when the user is on the frontpage.
The problem is the HTML/table below is being copied-in on all my WordPress article/comment pages. Can i make some kind of custom loop so the code below is only displayed on the frontpage where all the latest news are shown - and not inside my articles as well?
HTML code:
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><h3>ET INTERESSENTSELSKAB FOR SKOV & JAGT</h3></td>
</tr>
<tr>
<td><h1>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></h1></td>
</tr>
<tr>
<td class="intro_text"><?php bloginfo('description'); ?></td>
</tr>
</table>
</td>
</tr>
</table>