Site logo

[Resolved] Remove Date/updated date from a specific category posts

Home Forums Support [Resolved] Remove Date/updated date from a specific category posts

Home Forums Support Remove Date/updated date from a specific category posts

Viewing 3 posts - 16 through 18 (of 18 total)
  • Author
    Posts
  • #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;
        
    } );
    #2273484
    Rohan Verma

    Awesome you are great dear. Everything is working just like I wanted. Thanks again

    #2274265
    Fernando
    Customer Support

    You’re welcome Rohan! Glad that worked!

Viewing 3 posts - 16 through 18 (of 18 total)
  • You must be logged in to reply to this topic.