• Does anyone know where I can find a theme that just lists the blog article titles on the front page instead of the snippet of the post? I would like them in a list so the user can click my post title and then read the full article.

    thanks in advance.

    Steve

Viewing 2 replies - 1 through 2 (of 2 total)
  • You could just use something like this example taken from the themes/default/index.php file:

    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>

    And then delete the reference to the_content in your existing theme’s index.php file.

    Thread Starter sdhunter

    (@sdhunter)

    Thanks very much. works a treat!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘article names only theme?’ is closed to new replies.