Use the RSS feed for a specific category

If you want to encourage your readers to subscribe to some of the updates of your site, it may be interesting to set up RSS feeds by category. The feed url to track updates on a category is obtained very simply by getting the URL of your category and add this /feed after the link they […]
View Post

Affect an image to categories in WordPress without plugin

This tutorial allows you to add a text field to fill the URL of an image for each of your categories. Add this in your functions.php file: [sourcecode language=”php”]add_action(‘init’, ‘my_category_module’);[/sourcecode] [sourcecode language=”php”]function my_category_module() { add_action ( ‘edit_category_form_fields’, ‘add_image_cat’); add_action ( ‘edited_category’, ‘save_image’); }[/sourcecode] The function to add the extra field : [sourcecode language=”php”]function add_image_cat($tag){ $category_images = get_option( ‘category_images’ ); $category_image = ”; if ( is_array( $category_images ) && array_key_exists( $tag->term_id, $category_images […]
View Post

Pay Per Post companies – Part1

Blog writing has emerged as a popular cultural phenomenon these days. Not only does a blog act as a wonderful tool for self expression on the Internet but it also offers a chance to make some money. There are a lot of services which can help a blogger to earn a good amount of money […]
View Post

Pointing domains from Dynadot to blogger

Dynadot is the most recommended Domain registrar here at GP2B.com and because of that many of our followers use them, but we got a lot of messages from them asking for a solution to point the domains to blogger. Many of those explanations that we found in the web are not complete, and because of […]
View Post

Pointing domains from Godaddy to blogger

I received too many e-mails from people who asked me to explain how to point domains from Godaddy to blogger after the changes from the company for the DNS management. I just visit the new system and made this small tuto. So after login to your account you will see something like that containing a […]
View Post

5 Different Ways to Make Money on Craigslist

Craigslist.org is an online classified website that allows you to make some good money.  With Craigslist you have unlimited choices to make money. You can choose a way of earning money that suits you the most. Here is a look at 5 different ways you can make money on Craigslist. 1 – Make Money by […]
View Post

Exclude the category you don’t need from your menu

Every time you add a new theme to your WordPress blog and you find that this theme show all your categories in a menu. The idea of excluding a category from the menu come directly to your mind. Today I propose to change the categories menu you have in your home page to suit your […]
View Post