A

How to customize your WordPress Blog’s 404 page

If you got a WordPress Blog, this one is for you. What is a 404 page? Many times it may happen that a visitor lands on a page that doesn’t exist, and so a 404 error is returned by the server which displays a custom page. This page is referred as a 404 page. To […]

wordpress_404_page

If you got a WordPress Blog, this one is for you.

What is a 404 page?

Many times it may happen that a visitor lands on a page that doesn’t exist, and so a 404 error is returned by the server which displays a custom page. This page is referred as a 404 page. To have a look at your 404 page, just type anything following the url of your site. E.g. www.domainname.com/jdjshb/ To check my 404 page just go to this URL http://blog.ashfame.com/ashfameissexy

What is the need for customizing 404 page?

If a potential visitor lands on a 404 page, he is likely to bounce off. However, you can make your 404 page much more informative, and provide your visitors with a way to navigate through your blog. I am sure if one wants to grow, he can’t afford to loose traffic in any case.

How to Customize the 404 page?

First of all, make sure your theme has a 404.php file under the theme’s directory. If it doesn’t exist then you can manually upload it via FTP. From the Admin Dashboard, Select Presentation > Theme Editor > 404.php You can add anything that give visitors a option to browse your blog. The things you offer depend totally on you. You can offer them an option to search your blog or let them browse through the categories or whatever you want. Here are some codes you can add in your 404.php to make 404 page worthy.

Search Feature

<form method=”get” id=”searchform” action=”<?php bloginfo(‘url’); ?>/”>
<div><input type=”text” value=”<?php the_search_query(); ?>” name=”s” id=”s” />
<input type=”submit” id=”searchsubmit” value=”Search” />
</div>
</form>

Archives By Month

<h2>Archives by Month:</h2>
<ul>
<?php wp_get_archives(‘type=monthly’); ?>
</ul>

Archives by Category

<h2>Archives by Subject:</h2>
<ul>
<?php wp_list_cats(); ?>
</ul>

Bonus tips:

  • You can show off weekly archives by replacing monthly by weekly. E.g. <?php wp_get_archives(‘type=weekly’); ?>
  • Just wrap the code with <div id=”left”> Place Code here </div> to align it to left.
  • Just wrap the code with <div id=”right”> Place Code here </div> to align it to right.
  • You can even use 404 page to promote some of your best articles.

If you like the tutorial, then please take out some time to share it on social networking sites by using the icons below. Things like these will encourage me to come up with more of such tutorials.

7 responses to “How to customize your WordPress Blog’s 404 page”

  1. nice tips…but page 404 meants the requested page is not found…is it a gud practice to have something else instead of throwing the appropriate error message?

  2. Ashfame says:

    @Techblissonline Dot Com
    You need to give a little 404-Not found message. Thats it. 😉
    Check my 404 page :
    Its always better to offer option to browse the blog rather than letting them bouncing off.

  3. Bontb says:

    I use adsense on my 404 page lol 🙂 cool stuff mate!!!

    btw i just dropped card from livecrunch.com if you don’t mind 😛

  4. Ashfame says:

    @Bontb
    I saw your 404 page. I didn’t saw any Adsense ads but saw the link to subscription.
    Well Which ads are you talking about? Did I missed anything?
    And regarding the subscription link, I doubt if you are getting any good response from it. Do share your experience with us.

  5. music says:

    What do you mean ?

  6. Ashfame says:

    @music
    What do you don’t understand? I will be happy to help you. 🙂

  7. Jhay says:

    Great post! Might try this sometime this week. Thanks happy holidays!