• Skip to main content
  • Skip to secondary menu
  • Skip to primary sidebar
  • Skip to footer
  • Home
  • ⭐ Success Stories Newsletter
    • See Previous Editions
  • Work With Ann
    • Request a Callback
Ann Donnelly Business Success Stories

Business Success Stories

How To Build Success In Your Business

  • Building Success Stories Podcast
    • The Interviews
  • Business Journal Articles
  • Business & Marketing Advice
    • Business Advice
    • Digital Marketing Advice
      • Digital Marketing Archives
Home » Digital Marketing Articles (Archives) » Tutorials & Support » Remove ‘Post Title’ from Pages on WordPress w/Genesis Theme Framework

Remove ‘Post Title’ from Pages on WordPress w/Genesis Theme Framework

December 30, 2010 by Ann Donnelly

Genesis Framework for WordPressThere are so many ways to customise the themes that you use with WordPress.  I have chosen to mainly use the Genesis Theme Framework by Studio Press because the developers have added good SEO features and provide great support.  I’ve been able to do a lot of customisation to sites by using the various child themes and editing the CSS.  They’ve also added some plugins to make it easier for me and clients to update commonly edited areas of the site (like removing author name from posts, etc.)  Sometimes I edit the functions.php file of the child theme in order to add widgets, add/remove/edit other areas on pages.  Sometimes I get the code to do this from the Studio Press support forum when specific to the theme, other times from the WordPress.org Support Forum (support only for those that have purchased themes) and also by just ‘Googling’ what I am looking for and finding it on a helpful blog on the topic.  Some of these customisations are so good I want to use them on all sites and pretty much remember how to do them off the top of my head. Some are only applicable to certain situations and are only needed once in awhile, so then I need to go digging back into old work to see what I had done — or I need to start from scratch looking through forums again.  I’ve decided that I will now document this customisations in this blog so that I can easily find them again, and perhaps help others looking for similar solutions.

Remove ‘Post Title’ from All Pages & Posts

In functions.php add the following:

//REMOVE POST TITLE FROM ALL PAGES AND POSTS
add_action(‘genesis_before’, ‘child_conditional_actions’);
function child_conditional_actions() {
if ( is_page() )
remove_action(‘genesis_post_title’, ‘genesis_do_post_title’);
}

Remove ‘Post Title’ from Homepage Only

In functions.php add the following:

//REMOVE POST TITLE FROM HOMEPAGE ONLY
add_action(‘genesis_before’, ‘child_conditional_actions’);
function child_conditional_actions() {
if ( is_home() )
remove_action(‘genesis_post_title’, ‘genesis_do_post_title’);
}

Remove ‘Post Title’ from ‘Front Page’

To be used when you have indicated a specific page to be used for the front page of the site under Settings-General.

In functions.php add the following:

//REMOVE POST TITLE FROM FRONT PAGE
add_action(‘get_header’, ‘child_remove_page_titles’);
function child_remove_page_titles() {
if ( is_front_page() )
remove_action(‘genesis_post_title’, ‘genesis_do_post_title’);
}

Remove ‘Post Title’ from a Specific Page (other than the Homepage or Front Page)

In functions.php add the following:

//REMOVE PAGE TITLE FROM ABOUT US PAGE
add_action(‘genesis_before’, ‘child_conditional_actions’);
function child_conditional_actions() {
if(is_page(‘about-us’ ))
remove_action(‘genesis_post_title’, ‘genesis_do_post_title’);
}

To indicate which specific page to apply the condition to you can use the page title, the page slug or the ID number. (Thanks to http://www.techforluddites.com/2010/01/thesis-applying-functions-only-to-specific-pages.html for providing this information.  Check out that post and http://www.inforats.com/set-a-wordpress-widget-to-appear-on-some-pages/ for more information on conditional statements for a variety of functions.)

Remove ‘Post Title’ from More than One Page

In functions.php add the following using a double bar to separate the different pages:

//REMOVE PAGE TITLE FROM INDICATED PAGES
add_action(‘genesis_before’, ‘child_conditional_actions’);
function child_conditional_actions() {
if(is_front_page() || is_page(‘about-us’ ) || is_page (‘contact-us’ ))
remove_action(‘genesis_post_title’, ‘genesis_do_post_title’);
}

Thanks to @Nick_theGeek for the original code snippet from the Studio Press forum. I then picked up how to make it work for my specific need (Front Page) from a few other posts with similar situations.

This specific code may not work with your theme, but if you look at the code you may be able to see how you can apply it to suit you.

Let me know if you have any other tips on this or any other useful WordPress or Genesis Theme Framework customisation ideas.

Filed Under: Tutorials & Support, Web Design & Development, WordPress

Primary Sidebar

WORK WITH ME!

Elevate Your Business with Decades of Proven Expertise. As your dedicated Fractional COO, I’ll leverage my 40 years of experience in multinational corporations and running successful businesses to drive growth and efficiency.

Let’s unlock your company’s full potential.

  • See what I can do for your business!
  • Book an initial call/meeting
  • Call or Text Me – (518) 636-4420
  • Email coo@anndonnelly.com

⭐ The Success Stories Newsletter

A monthly email for ambitious individuals looking to take their businesses to the next level with insights, advice, and how-tos from Ann Donnelly’s 40 years of business and marketing experience.
* indicates required

Building Success Stories Podcast

Carrie Barber, Founder Barber Medical Legal Nurse Consulting, LLC (S2 Ep16) Building Success Stories podcast

Dr. Carrie Barber, Founder, Barber Medical Legal Nurse Consulting, LLC (S2 Ep16)

All Episodes

Glens Falls & Saratoga Business Journal Articles

Glens Falls Gets A Jolt of Creative Energy And The Birth Of A New Collaborative Space: Glens Falls Hub - Chuck Copenspire - Glens Falls Business Journal Article by Ann Donnelly

Glens Falls Gets A Jolt of Creative Energy And The Birth Of A New Collaborative Space: Glens Falls Hub

All Articles

Footer

Building Success Stories with Ann Donnelly Podcast

⭐ The Success Stories Newsletter

A monthly email for ambitious individuals looking to take their businesses to the next level with insights, advice, and how-tos from Ann Donnelly’s 40 years of business and marketing experience.
* indicates required
Ann Donnelly Fractional COO
  • Facebook
  • Instagram
  • LinkedIn
  • YouTube

Copyright © 2025 ANN DONNELLY | Privacy Policy | Cookie Policy