Support » Theme: azeria » How to remove date from the Post

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi!
    You need to add next code into functions.php in your child theme:

    add_filter( 'azeria_disabled_meta', 'azeria_child_disable_date' );
    function azeria_child_disable_date( $disabled ) {
        return array_merge( $disabled, array( 'date' ) );
    }

    Thread Starter btportal

    (@btportal)

    Many Thanks TeFox, it worked.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove date from the Post’ is closed to new replies.