Archive

Archive for the ‘Wordpress Ideas’ Category

Adsense Compliant Privacy Policy Page For WordPress

March 24th, 2009 1 comment

Recently I got an e-mail from Google telling me I need to update on my sites. Since I manage may WordPress blogs, that was not a good news from me as I had to update absolutely all sites to create varions pages. I was happy to know that Eric Giguere has created a WordPress plugin named Privacy Policy.

All you need is to download the plugin and extract its contents in default WordPress Plugin Directory. Then it will appear under “Settings” tab where you can customize the output.

This nice plugin will save a lot of time for those who deal with multiple sites that show Google Adsense.  It has been recemtly updated to show privacy policy that is compliant to latest Google guidelines. Must have!

How to Delete All Posts in WordPress

March 21st, 2009 No comments

If you need to kill all the posts you have written, you’re welcome to use a simple plugin. Its name sounds very nice: WordPress Suicide. What does this plugin do?

It allows to truncate all major tables like wp_posts and wp_terms. It’s just if you need to remove ALL posts and all categories, not one by one.

Where to Download Previous Versions of WordPress

March 19th, 2009 No comments

If you don’t like 2.7.1 or 2.7 that are located at the main page of wordpress.org, you might be interested in downloading a previous release of WordPress. Just sharing a link with you to avoid searching: http://wordpress.org/download/release-archive/ . There are all versions availabel and you’re welcome to choose, which one is right for you.

How to Wrap Text Around Images in WordPress Themes

March 9th, 2009 No comments

A simple code will help you to use text and images in a splendid way using WordPress. You should alter a CSS file to add the following lines:

img.centered {
display: block;
margin-left: auto;
margin-right: auto;
}

img.alignright {
padding: 4px;
margin: 0 0 2px 7px;
display: inline;
}

img.alignleft {
padding: 4px;
margin: 0 7px 2px 0;
display: inline;
}

.alignright {
float: right;
}

.alignleft {
float: left;
}

Once this is done, your text will be wrapped around images.