Home › Forums › Support › Remove Date/updated date from a specific category posts This topic has 17 replies, 3 voices, and was last updated 3 years, 9 months ago by Fernando. Viewing 3 posts - 16 through 18 (of 18 total) ← 1 2 Author Posts July 5, 2022 at 2:16 am #2273479 Fernando Customer Support Try this: add_filter( 'generate_header_entry_meta_items', function( $items ) { if ( is_category( 'your-category' ) || ( is_single() && in_category( 'your-category' ) ) ) { return array_diff( $items, array( 'date' ) ); } return $items; } ); July 5, 2022 at 2:21 am #2273484 Rohan Verma Awesome you are great dear. Everything is working just like I wanted. Thanks again July 5, 2022 at 5:12 pm #2274265 Fernando Customer Support You’re welcome Rohan! Glad that worked! Author Posts Viewing 3 posts - 16 through 18 (of 18 total) ← 1 2 You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In