Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter politicske

    (@politicske)

    Resolved.

    Good you have fixed that.

    Thread Starter politicske

    (@politicske)

    Yes. Using this code

    // Hide title and meta on single posts
    add_action( 'wp', function() {
        if (is_single() ) {
            add_filter( 'generate_show_title', '__return_false' );
            add_filter( 'generate_post_date', '__return_false' );
            add_filter( 'generate_post_author', '__return_false' );
        }
    } );
    Theme Author Tom

    (@edge22)

    Thanks for sharing your code 🙂

    Thread Starter politicske

    (@politicske)

    You’re welcome, Tom. The documentation and support forum really does have lots of solutions.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Edit content header’ is closed to new replies.