• How can I make a a little table on top of each entry that has the date and title of each entry on it. I don’t want the name of the entry to be in the same div as the entry. also, how can I make it so that the name isn’t a link?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Something like this?

    <table>
    <tr>
    <td><?php the_date(); ?></td>
    <td><?php the_title(); ?></td>
    </tr>
    </table>

    Thread Starter Uzma

    (@uzma)

    which file would this go in?

    Moderator James Huff

    (@macmanx)

    which file would this go in?

    It’s hard to tell without telling us the name or your theme, or at least providing us with a link so that we can make an educated guess. But, if I had to guess, I would say that it goes in a file called either “Main Template” or “Index Template”.

    Thread Starter Uzma

    (@uzma)

    https://enchanted-dreams.net is the domain and in the middle i have wp and wanted to get the date and the title seperate from the post.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How can I’ is closed to new replies.