Reputation: 41
How to remove entry title container from Genesis child theme ? i can remove title only by the below code for the total site but I can't remove container which occupy some extra spaces. remove_action('genesis_post_title', 'genesis_do_post_title');
May be by css we can do that but I need if there any Hooks exist. Thanks in advance.
Upvotes: 0
Views: 595
Reputation:
See this answer which uses the following code:
remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_open', 5 );
remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_close', 15 );
You can use the code in a template file or conditionally in functions.
Upvotes: 0