• Resolved ptaxi

    (@ptaxi)


    Hi,

    I can see the post itself, but the title info, along with the permalink are not displayed.
    When I switch to the default “twentyten” theme, it works fine. Thus, I am thinking it has something to do with one of the php files in my custom theme, but I can’t figure out which one/s.

    I would link to the site, but it is local.

    Thanks..

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter ptaxi

    (@ptaxi)

    Any help would be fantastic!

    so would patience! ANd more information!

    A link to your site would really help. When do you not see the title? index, page, post, archive?

    One of your template is either missing or has a coding issue where the title is concerend.

    a line that should look similar to:

    <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>

    Thread Starter ptaxi

    (@ptaxi)

    Hi,

    Apologies for the impatience..

    I am trying to display a list of posts on a template page- I see the posts, but they have no titles, permalinks, and are not even formatted in my content div.

    I am thinking it could be on of the php files, but I don’t know which one..Any ideas?

    Here is the code I am using:

    <div id="content">    
    
            <!--THE LOOP -->
    
          <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    
          <?php the_title(); ?>
          <?php the_permalink() ?>
          <?php the_content('<p>Read more</p>'); ?>
          <?php endwhile; endif; ?>
    
          <!--end of THE LOOP -->
    
      		</div>

    Thread Starter ptaxi

    (@ptaxi)

    FYI:

    I resolved this issue >

    I didn’t realize that the posts used the Index.php file, which I did not configure to show posts. Once I configured it, it worked fine.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Post Titles Not Displaying on Multiple Posts Page in Custom Theme’ is closed to new replies.