• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer

Tips and Tricks HQ

  • Home
  • Projects
    • All Projects
    • Simple WP Shopping Cart
    • WP Express Checkout Plugin
    • Accept Stripe Payments
    • WP Download Monitor
    • Easy HTTPS Redirection
    • WP Security and Firewall Plugin
    • WP eStore Plugin
    • WP Affiliate Platform
    • WP eMember
  • Products
    • All Products
    • Checkout
  • Support
    • Support Portal
    • Customer Only Forum
    • WP eStore Documentation
    • WP Affiliate Software Documentation
    • WP eMember Documentation
  • Contact

How to Make a Web Page Your Homepage

Home » Blog » How to Make a Web Page Your Homepage

Last updated: December 24, 2016




This is a tutorial for the video answers to top WordPress questions series that we have been publishing on this site to help users get started with WordPress.

In this tutorial, you will learn:

  • How to use a WordPress Page as your homepage, rather than the default list of posts.
  • How to remove the title for the newly created static homepage, by creating a small plugin.



Steps to Switch to a Static Homepage and to Remove the Title

  1. After logging into the WordPress Dashboard, click Pages, then click the Add New button.
  2. Create your page, and then click Publish.
  3. Hover over Settings in the WordPress Menu, and then click Reading.
  4. In the Front Page Displays section at the top, change from Your Latest Posts to A Static Page.
  5. Select your newly created page from the Front Page list.
  6. Scroll down and click the Save Changes button.
  7. By default, the title of the static homepage will show up on the web site. While having the title is handy for referencing the page from within the WordPress Dashboard, its display may not be desired on the web site. Let’s create a small plugin to hide it.
  8. Install the Pluginception plugin to make plugin creation simpler, by going to Plugins, then Add New. Then do a search for Pluginception, click Install Now, then click Activate.
  9. Under the Plugins Menu, click Create a New Plugin.
  10. Call it something like: Hide the Home Page Title Plugin, then click the Create a Blank Plugin button.
  11. Now, you can add a function that filters the title, but just for the home page. You can see the code on the video screen, or it can be copied from the web page that this written tutorial is on. Essentially, you are using a WordPress filter hook on the_title function. You also want to make certain that you are only hiding the title on the home page of the web site and not in menus, and not within the Admin area. You also want to make certain that you are not affecting other pages, so you want to run the is_front_page conditional check within your code.
  12. After pasting in your function, click the Update File button.
  13. Then, view your homepage to see if the title has been filtered away. Then check other pages and the navigation menu, as well as the Pages area in the Dashboard to make sure the home page title remains in those places.

Code used within this tutorial:

function remove_home_page_title( $title ) {
  if( is_admin() || !in_the_loop() ) { return $title; }
  if ( is_front_page() ) {
    return '';
  } else {
    return $title;
  }
}
add_filter('the_title', 'remove_home_page_title');

Related Posts

  • How to Login to Your WordPress Site
  • How to Install a WordPress Theme
  • How to Install WordPress Plugins
  • Adding an Author Image and Bio Box in WordPress, and Linking to a Google+ Profile

Video Tutorial,  Wordpress Blogging Tips,  landing page tutorial,  WordPress landing page,  WordPress tutorial

Reader Interactions

Leave a Reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Featured & Popular Articles

Video Answers to Top WordPress QuestionsWordPress Optimization Tips and Tricks for Better Performance and SpeedEssential WordPress Security Tips - Is Your Blog Protected?WordPress Simple PayPal Shopping Cart PluginTop 15 Search Engine Optimization (SEO) Techniques I Forget to DoList of the Best and Must Use WordPress PluginsHow do I Start a Blog and Make Money Online?Good Domain Name Picking Tips for Your Blog SetupFind Out Which WordPress Web Hosting Company Offers the Cheapest and Reliable Web Hosting Solution

Featured WordPress Plugins

WP Express Checkout Plugin
wordpress estore plugin
wordpress membership plugin
wordpress affiliate plugin

Recent Posts

  • How to Use Browser Developer Tools to Inspect Elements and [...]
  • Accept Donations via PayPal from Your WordPress Site Easil [...]
  • Buy Now Button Graphics for eCommerce Websites [...]
  • Subscription Button Graphics for eCommerce Websites [...]
  • Adding PayPal Payment Buttons to Your WordPress Sidebar Ea [...]

Comment & Socialize

  • @Rob, We have just released ...
    - admin
  • I installed the plugin a co ...
    - Rob
  • @Sebastian, We've released ...
    - admin
  • I've used this plugin on a ...
    - Sebastian Djupsjöbacka
  • @John, this plugin doesn't ...
    - admin

Check out our solutions

View our WordPress plugin collection and start using them on your site.

Our WordPress Solutions

Footer

Company

  • About
  • Privacy Policy
  • Terms and Conditions
  • Affiliate Login

Top WordPress Plugins

  • Simple Shopping Cart
  • PayPal Donations
  • WP Express Checkout
  • WP eStore
  • WP eMember

Blogging Tips

  • How to Start a Blog
  • Selecting a Good Domain
  • Cheap WP Hosting
  • WP Video Tutorials
  • Simple SEO Tips

Search


Keep In Touch

Copyright © 2025 | Tips and Tricks HQ