Site logo

[Support request] How to remove all Single Post title in functions.php

Home Forums Support [Support request] How to remove all Single Post title in functions.php

Home Forums Support How to remove all Single Post title in functions.php

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1592988
    John Lester
    // Remove Content Title
    add_action( 'after_setup_theme', 'tu_remove_title' );
    function tu_remove_title() {
    	add_filter( 'generate_show_title', '__return_false' );
    }

    the code above also removes the blog archive title, I just want to remove the single post title.

    Thanks

    #1593031
    David
    Staff
    Customer Support
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.