• Skip to primary navigation
  • Skip to content
  • Skip to primary sidebar

WP SITES

2468

Original Genesis Tutorials & 5000+ Guaranteed Code

Snippets

  • Subscribe
  • Register
  • Videos
  • Log in

Need Help? - Get Coding Support Now

Remove Blog Page Title In Genesis

Add the following PHP code to the end of your child themes functions file:

remove_action( 'genesis_before_loop', 'genesis_do_blog_template_heading' );

You can also add the code directly to a page_blog.php template file in your child themes root directory.

The code removes the entry title from any page using the blog page template in Genesis.

#Theme Specific Options

If your child theme repositions your blog page title using other genesis hooks or uses a custom function to reposition and modify the default blog page title, the above line of code won’t work so you’ll need a different solution.

Example : The Essence Pro child theme includes a custom function which removes the blog page title from the default hook position and then adds it back to another hook.

In this case, you’ll need a custom function to remove the title from the blog page when using Essence Pro like this :

add_action( 'genesis_meta', 'remove_essence_blog_page_title' );

function remove_essence_blog_page_title() {

    if ( genesis_is_blog_template() ) {
	
    remove_action( 'essence_entry_header', 'genesis_do_blog_template_heading' );

	}
}

#Plugin Removes Page Title

Another reason the code to remove the blog page title might not work is because of code added by a plugin.

If your plugin enables you to remove page/entry titles, then it may override any code you add to your child theme files if it uses the same hook and a higher priority.

Related

  • Remove Entry Title Over Essence Pro Hero Image
  • Template To Fully Customize The Blog Page in Genesis
Subscribe for new Genesis Tutorials

Blog Page Essence Pro

Primary Sidebar

Recently Coded

  • Infinity Pro – Change Team Page From 4 To 3 Columns
  • Infinity Pro Vertical Menu
  • Genesis Sample Theme – Custom Archive Page Template With Different Hero Images
  • Foodie Pro – Reposition Search Box Before Nav Menu
  • Showcase Pro – Use Custom Image As Single Post Entry Header Background

Brad Dalton Specializes In Genesis child theme customization & code modification.

Advertise · WPEngine · Genesis · Log in

  • Membership
  • by Theme
  • Contact
  • RSS
  • Newsletter ( Twice Weekly )