• I’d like to know how to remove ‘Post Details’ from the bottom of the blogs that I post. It is a box that has post title, date posted, author, filed as, tags, and shortlink. I’d really appreciate the help!

    Tomaro’s CHANGE

Viewing 1 replies (of 1 total)
  • You need to modify the theme you are using to make your desired changes. You may need to modify multiple files including but not limited to: wp-loops.php, single.php and page.php.

    The code you will want to remove most likely looks similar to:

    <div class="post-info">
    							<?php if(!is_page()) : ?>
                                <span class="setting user"><?php echo the_author() ? '' : 'Unknown'; ?></span>
    							<span class="setting datetime"><?php the_time('F d, Y'); ?></span>
    							<?php endif; ?>
    						</div>

Viewing 1 replies (of 1 total)
  • The topic ‘How to Remove 'Post Details' From My Blog’ is closed to new replies.