Entrecard does the unthinkable: gets people to comment!

In order to be Known that Entrecard was a very important tools to get traffic to your blog. I put Entrecard widget in all my blogs and i’ll got visitor that i couldn’t imagine. All we have to do is just drop the card on the other blog widget and we got Entrecard Credit that we can use to puts our card on the other blog. Not only that, when we drop the card on the other’s blog, the owner of the may follow us by visiting and drop our entrecard on our blog.

Comments on our post is very important too, because with the existence of the comment could burn our passion to write a new post. Afterall, the comments on our blog could raise our blog post value. Every blogger always want that blogpost that they’d publish will get a lot comment from visitor, and for you know Entrecard does the unthinkable, its gets people to comment on our blog with a new partnership with SezWho. SezWho is the web’s best comment application for your blog. And for Entrecard Members, SezWho is going to increase the quality of your Entrecard traffic 100 times as all your droppers start to leave comments, and it will give you an exciting new way to earn credits by leaving valuable comments on each others’ blogs.

All you have to do is only follow the step below:

  1. Install SezWho Plugin on your blog.
  2. Register for SezWho and notify Entrecard http://entrecard.com/sezwho_register.
  3. There is a check-box on the Entrecard Browser, to search for only SezWho enabled blogs.

What benefit by joining this program ?

  1. You’ll get A LOT more comments as members are more motivated to comment on you.
  2. You’ll earn credits for comments you’re already leaving!
  3. As you become motivated to comment more, you will start receiving more and more traffic, comments and subscribers.

Anyway, there a secret contest when you join this program. That secret contest you can find in :http://entrecard.com/blog/?p=444

So let’s Get Comment !!!!!

Rate this:
2.5

Making Your Own Wordpress Themes (Part 1)

Making theme wordpress by yourself perhaps very pleasant but also can make confused for some people. Its not easy to make wordpress themes because requiring a knowledge about programming language which are php and css also. It also need design skill if you want to make beautifull wordpress themes . Basically all wordpress themes made by modify wordpress theme default and classic on moment which include when wordpress installed. I will try to share how to make a themes wordpress by your ownself.

First, we must learn about the structure of wordpress themes . There three main part of the themes, which are : PHP Script, CSS Script and Images. CSS script used for control layout and desain of the themes, in wordpress themes CSS script usualy packed in one file which is STYLE.css.

The next part is PHP Script which is the main part of the themes and used to translate every script language become the user interface which will displayed. Number files of PHP Script in wordpress themes was different in every themes. But the most important files that must contain in the folder are:

  1. 404.php : compraising the php script to display error message.
  2. Archive.php : compraising the php script to display the archive of single post in wordpress database, based on keyword, category and time stamp.
  3. Archieves.php : compraising the php script to display the archive of every post in wordpress database, based category and time stamp.
  4. Comments.php : compraising the php script to manage and display the comment from visitor.
  5. Footer.php : compraising the php script to manage and display the bottom part or footer of wordpress blog.
  6. Functions.php : compraising the php script to manage all function script that used in the themes.
  7. Header.php : compraising the php script to manage and display the top side of blog or we called it Header.
  8. Index.php : compraising the php script to manage and display the main page of our blog.
  9. Page.php : compraising the php script to manage and display our post per page.
  10. Searchform.php : compraising the php script to manage searching form and searching activity in our blog.
  11. Sidebar.php : This script used to represent the side part of our blog included the widget that we used.
  12. Single.php : compraising the php script to manage and display our single post.

Besides the files above, we could enhance some additional PHP files according what we needed. For example: we can split sidebar.php to 3 files which are: sidebar.php, sidebar_left.php and sidebar_right.php. Remember that sidebar.php must be always exist.

Usually the most often file that modified was: Header.php, index.php, sidebar.php and footer.php.

Rate this:
2.5