Say you want to add an element to just the home page of your Thesis Theme blog, it’s easy and here’s how you do it. Just add the code below to the area you want it to appear in OpenHook, or add it to the custom functions file. Then add your HTML. And dont’ forget to createyourown CSS styles. You can change this up to work on any page you want.
<?php
if (is_home())
{
echo “<div class=createyourown>
<!–insert your HTML here–>
</div>”;
}?>












Comments on this entry are closed.