• How can I get rid of the read more, published by and the date information on a post?

    Also, when I click on a page, it says comments are close, I don’t want comments on it, but can i remove the “comments are closed” part?

Viewing 1 replies (of 1 total)
  • How can I get rid of the read more, published by and the date information on a post?

    By editing the single.php template file in your theme and removing <?php the_author();?> and <?php the_date();?> (and/or <?php the_time();?>). Single post don’t normally have a read more link…

    can i remove the “comments are closed” part

    Edit the relevant template file and change:

    ><?php comments_popup_link(); ?>

    to:

    <?php if('open' == $post->comment_status) comments_popup_link(); ?>

Viewing 1 replies (of 1 total)

The topic ‘How to remove…’ is closed to new replies.