• hays298

    (@hays298)


    I want to remove the author and date from my posts.
    It only seems to appear when you are viewing an individual post, for example here: hayleysummers.com/2014/03/28/hello/
    I have read some other queries, and the solution seems to be delete the author name from the single.php file, but when I search this file for ‘author’ nothing is found.

    Any ideas?

Viewing 9 replies - 1 through 9 (of 9 total)
  • esmi

    (@esmi)

    What theme are you using? Where did you download it from?

    Thread Starter hays298

    (@hays298)

    Hi Esmi, thanks for responding. I’m using Brunswick, I just got it from the WordPress store.

    esmi

    (@esmi)

    Sorry? There is no wordpress.org “store”…

    Thread Starter hays298

    (@hays298)

    Maybe the Marketplace? Would that make sense?

    esmi

    (@esmi)

    No. Absolutely nothing is sold on wordpress.org. Everything is free.

    johnfotios

    (@johnfotios)

    I assume single.php has another function calling in the author and date?

    Like, search for

    the_post();

    and copy everything after that into here so we can see 🙂

    Thread Starter hays298

    (@hays298)

    I didn’t pay for my theme (there were some themes you could pay for).
    I got it from the “Marketplace”. In WordPress 3.8.1 on my Dashboard, underneath “Subscribers” and above “Appearance” there is a link called “Marketplace”. I went in there and selected theme Brunswick.

    esmi

    (@esmi)

    Is this a wordpress.com site?

    Thread Starter hays298

    (@hays298)

    Thanks for replying johnfotios, here’s the code:

    the_post();
    
    					get_template_part( 'content', 'single' );
    
    					// If comments are open or we have at least one comment, load up the comment template.
    					if ( comments_open() || get_comments_number() ) :
    						comments_template();
    					endif;
    
    				endwhile; // End of the loop.
    			?>
    
    		</main><!-- #main -->
    	</div><!-- #primary -->
    
    <?php get_footer();

    The site is a wordpress.org site.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Remove author and date from post’ is closed to new replies.