Title: Remove site headline
Last modified: August 24, 2016

---

# Remove site headline

 *  Resolved [bjarkof](https://wordpress.org/support/users/bjarkof/)
 * (@bjarkof)
 * [11 years ago](https://wordpress.org/support/topic/remove-site-headline/)
 * Hi, I was wondering if it’s possible to remove the “entry-title”? I want to make
   my own headings in the page editor and not have the name of page appearing.

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Thread Starter [bjarkof](https://wordpress.org/support/users/bjarkof/)
 * (@bjarkof)
 * [11 years ago](https://wordpress.org/support/topic/remove-site-headline/#post-6033794)
 * I’m using the full-width template for all my pages btw.
 *  [Stacy Kvernmo](https://wordpress.org/support/users/funstacy/)
 * (@funstacy)
 * [11 years ago](https://wordpress.org/support/topic/remove-site-headline/#post-6033819)
 * Hi there,
 * Just want to start by saying it is important to create a child theme before you
   make the following changes. With that said, the best way to achieve what you 
   are doing is to remove the lines from the page templates themselves.
 * Since you are only using the full-width template, then your only change would
   be to line 18 in content-page.php, or you may want to remove lines 17-19 if you
   don’t want the underline to appear above the content.
 *     ```
       <header class="entry-header">
       		<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
       	</header><!-- .entry-header -->
       ```
   
 * However, if you have a blog, or have a search, etc then you may need to update
   all of your content-*.php files as well. Here are just a few:
 * line 26 on content.php:
 *     ```
       <?php the_title( sprintf( '<h1 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?>
       ```
   
 * line 16 on content-single.php:
 *     ```
       <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
       ```
   
 * line 13 in content-search.php:
 *     ```
       <?php the_title( sprintf( '<h1 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?>
       ```
   
 * Hope that helps!
 *  Thread Starter [bjarkof](https://wordpress.org/support/users/bjarkof/)
 * (@bjarkof)
 * [11 years ago](https://wordpress.org/support/topic/remove-site-headline/#post-6033826)
 * Thank you very much for such a detailed reply! I’ve already created a child theme
   so that’s not a problem 🙂 Have a nice day!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Remove site headline’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/moesia/1.54/screenshot.png)
 * Moesia
 * [Support Threads](https://wordpress.org/support/theme/moesia/)
 * [Active Topics](https://wordpress.org/support/theme/moesia/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/moesia/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/moesia/reviews/)

## Tags

 * [heading](https://wordpress.org/support/topic-tag/heading/)

 * 3 replies
 * 2 participants
 * Last reply from: [bjarkof](https://wordpress.org/support/users/bjarkof/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/remove-site-headline/#post-6033826)
 * Status: resolved