Google Sandbox: Myth or Reality?

A lot of talk still exists nowadays about whether Google has a sandbox or not. With “sandbox” we understand a place where new blogs and general sites go to “age” before being included definitely in the relevant search engine results. Google denies it exists, although Matt Cutts said in an interview that: “There are some things in the algorithm that may be perceived as a sandbox that doesn’t apply to all industries”. Of course, I’m not going to say that the sandbox effect does exist. Instead, I will say that about a year after one of our other sites went live, there was a large increase in incoming search engine traffic from Google.

Google Sandbox

I personally think the idea of “aging” a Blog certainly makes sense. It gives the webmaster a chance to establish his project as a solid internet website or Blog. It also gives the chance to build a rich database of articles and grow its content, to sort the bugs out and to tweak its design.

Continue reading

Create a custom static front page

In my previous post I explained how to create a custom page for your Wordpress Blog. Now I will explain how to set that page as your front page. I will explain two possibilities of custom pages. One is to create your own HTML page in a HTML editor and upload it to your FTP. And the other is to set a blog page as frot page. In this case instead of showing your posts as front page you will see a static page. Now let’s see the two possibilities in detail.

Create a custom HTML page and set it as front page:

Using your favorite HTML editor, create your own page and save it as “index.html”. Then upload it to your root folder, for example “yourdomain.com”. It doesn’t matter if wordpress is installed in the same folder. All internet browsers will interpret the index.html as the front page of your site.

Then go to “settings -> general” in your wordpress dashboard. There set your desired Blog Address. For example if you want your blog to display in “yourdomain.com/blog” then set that as url. Again, it doesn’t matter if wordpress is installed at “yourdomain.com”. Remember to have a link in your custom front page that goes to your blog. This option is great for those who want to have their blogs separated from their main sites. That is it. Now let’s see the second option.

Create a static page and set it as front page:

Sometimes you want to display a static page as your blog home. In this case you will have your posts and articles in a secondary page. This is very easy to set thanks to the new Wordpress features. The first step is to create the static page you want to display, you must do this in the Pages settings. In this example I will name it “Page 1”. Then you must create a second page, but this time you will leave it blank.

Continue reading

How to create a custom static page

In this post I will explain how to create a custom page for your blog and in my next article I will show you how to create a custom and static front page. Many site owners want to have a custom template for a specific page. Or set a custom “contact us” page with an online form without having to install a plugin. The first step is to design your customized page in your favorite HTML editor. You can use dreamweaver, fronpage or download a free HTML editor. You don’t have to know HTML programming. Just build the page in the design view of your HTML editor and then save it as PHP.

The next step is to paste some lines of code to tell Wordpress that this is a custom template. For example if you named your page test.php, the template name must be “Test”. Just make sure you don’t use any of the reserved names used by Wordpress (single, home, page, index, etc). You need to add these lines of code above the HTML code of your page:

<?php
/*
Template Name: Test
*/
?>

Your HTML code goes here.

Continue reading