by Admin
Wednesday, at 11:26 pm
Recently, I was busy to built my affiliate plan. I’m in focus to make money through affiliate program. I came across many source in forum and join many affiliates network like Commission Junction, Pepperjam Network, Amazon Associates etc.
I came into the affiliates word because it sounds very interesting. Many people makes thousands of dollars by affiliates and I think It’s not impossible and doesn’t need any special talent. All we need is to put the great effort and do many research to maximize our income.
Read More »
November 14th
This themes is based on my previous simplicity black free wordpress themes. I changed the background color to blue because blue is one of the most wanted color

Free Wordpress Theme Simplicity Blue
Read More »
November 7th
Well, this is my first free wordpress theme guys. I named it “Simplicity black“. I Hope you like it guys!

Free Wordpress Theme Simplicity Black
This is a very lightweight theme. I only use 1 images and do the rest with CSS.
Read More »
November 1st
The core files of a wordpress theme is index.php
This is the most important files in every wordpress theme. You must have this file if you create your own wordpress theme.
The index.php must contain code like this:
<?php if (have_posts()) { ?>
<?php while (have_posts()) { the_post(); ?>
// Code to show the blog content
<?php } ?>
<?php } ?>
If you know those scripts are PHP scripts, then you’ve already have a good understanding about what we talk about PHP script before. But, If you don’t understand exactly the what above code do, don’t worry you don’t have to understand it if you just want to create wordpress theme. You just need to know that it’s called “the loop“.
Read More »