phoenix…
answer… depends on your layout.. go to edit your post, on the right hand side, there are a few options for format.. figure out which one your using and read below… If you want the whole thing gone, delete the entire section that i post… if you only want individual lines removed, delete the entire line starting immediately before <li>
to immediately after </li>
so to delete written by, you would delete:
<li><?php _e( 'Written by', 'minimatica' ); ?> <?php the_author_posts_link(); ?></li>
if STANDARD, ASIDE or LINK look in content.php for:
<aside class="entry-meta">
<ul>
<li><?php _e( 'Written by', 'minimatica' ); ?> <?php the_author_posts_link(); ?></li>
<li><?php _e( 'on', 'minimatica' ); ?> <time datetime="<?php the_time( 'Y-m-d' ); ?>"><?php the_time( get_option( 'date_format' ) ); ?></time></li>
<li><?php _e( 'Filed under', 'minimatica' ); ?> <?php the_category( ', ' ); ?></li>
<?php edit_post_link( __( 'Edit', 'minimatica' ), '<li>', '</li>' ); ?>
</ul>
<?php the_tags( '<div class="entry-tags">', ' ', '</div>' ); ?>
</aside>
if AUDIO, VIDEO, IMAGE, or GALLERY, look in corresponding content-audio.php, content-video.php, content-image.php, content-gallery.php for
<aside class="entry-meta">
<ul>
<li><?php _e( 'Posted by', 'minimatica' ); ?> <?php the_author_posts_link(); ?></li>
<li><?php _e( 'on', 'minimatica' ); ?> <time datetime="<?php the_time( 'Y-m-d' ); ?>"><?php the_time( get_option( 'date_format' ) ); ?></time></li>
<li><?php _e( 'Filed under', 'minimatica' ); ?> <?php the_category( ', ' ); ?></li>
</ul>
<?php the_tags( '<div class="entry-tags">', ' ', '</div>' ); ?>
</aside>
As stated above, usually good to back things up…