Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Forum: Fixing WordPress
    In reply to: Posts Page Help
    Thread Starter chybowzj

    (@chybowzj)

    Added this coding and solved my problem thanks for the help you lead me in the right direction!

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
        <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
            <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
            <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
    
            <div class="entry">
                <?php the_content(); ?>
            </div>
    
            <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
        </div>
        <?php endwhile; endif; ?>
    Forum: Fixing WordPress
    In reply to: Posts Page Help
    Thread Starter chybowzj

    (@chybowzj)

    I added it but it still doesn’t show the text it just shows the share buttons.

Viewing 2 replies - 1 through 2 (of 2 total)