Title: remove post meta
Last modified: September 27, 2021

---

# remove post meta

 *  Resolved [AR](https://wordpress.org/support/users/sohel9875/)
 * (@sohel9875)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/remove-post-meta-2/)
 * how can i remove showed post date and author without hide display none code
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fremove-post-meta-2%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Theme Author [Alexander Agnarson](https://wordpress.org/support/users/alxmedia/)
 * (@alxmedia)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/remove-post-meta-2/#post-14911778)
 * You need to remove the following lines with a child theme:
 * content.php:
 *     ```
       <div class="list-card-date"><?php the_time( get_option('date_format') ); ?></div>
       ```
   
 * single.php:
 *     ```
       <span class="entry-author"><?php esc_html_e('by','incolor'); ?> <?php the_author_posts_link(); ?></span>
       <span class="entry-date"><?php the_time( get_option('date_format') ); ?></span>
       ```
   
 * Should fix it.
 *  Thread Starter [AR](https://wordpress.org/support/users/sohel9875/)
 * (@sohel9875)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/remove-post-meta-2/#post-14912239)
 * how i can stop image croping?
 *  Thread Starter [AR](https://wordpress.org/support/users/sohel9875/)
 * (@sohel9875)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/remove-post-meta-2/#post-14912240)
 * featured image are croping, i want to stop it
 *  Theme Author [Alexander Agnarson](https://wordpress.org/support/users/alxmedia/)
 * (@alxmedia)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/remove-post-meta-2/#post-14912820)
 * You can change featured image sizes in functions.php on line 74-75:
 *     ```
       add_image_size( 'incolor-small', 200, 200, true );
       add_image_size( 'incolor-medium', 520, 292, true );
       add_image_size( 'incolor-large', 740, 416, true );
       ```
   
 * More about this: [https://developer.wordpress.org/reference/functions/add_image_size/](https://developer.wordpress.org/reference/functions/add_image_size/)

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘remove post meta’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/incolor/1.1.1/screenshot.png)
 * Incolor
 * [Support Threads](https://wordpress.org/support/theme/incolor/)
 * [Active Topics](https://wordpress.org/support/theme/incolor/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/incolor/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/incolor/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [Alexander Agnarson](https://wordpress.org/support/users/alxmedia/)
 * Last activity: [4 years, 8 months ago](https://wordpress.org/support/topic/remove-post-meta-2/#post-14912820)
 * Status: resolved