In a post, right beneath the title, is shows the author and the date, the category and so on.
Now, the author is only me, and the date is not needed for anyone to know, so how/where do I remove these two??
Thanks
Marius Anhalt
What theme are you using?
funny… I wrote that somewhere… hmmm…. well maby not..
Its Pinboard
\Marius
I functions.php inside the function pinboard_entry_meta()
delete these lines:
<span class="entry-author-link"><?php the_author_posts_link(); ?></span>
<?php if( ! is_singular() ) : ?>
<span class="entry-date"><a href="<?php echo get_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_time( get_option( 'date_format' ) ); ?></a></span>
<?php else : ?>
<span class="entry-date"><?php the_time( get_option( 'date_format' ) ); ?></span>
<?php endif; ?>