Blogger Tools

facebook twitter feedburner Blogger Wordpress

Blogging productivity extensions for Chrome

I recently switched my default browser from Firefox to Chrome, and tested various blogging productivity tools. In the Chrome Webstore many apps and extensions are available to add more functionality to this wonderful web browser. I created a list of tools that help to increase your productivity as a blogger.

WordPress Stats. For bloggers who are addicted to statistics. Gets daily traffic stats of all your WordPress blogs right in your Chrome browser. Works in combination with WordPress.com Stats plugin for self-hosted wordpress blogs.

Scribefire for Chrome. A full-featured weblog client that integrates with Chrome and lets you easily manage multiple blogs. Supported platforms are WordPress, Blogger, MovableType, TypePad, Tumblr, Posterous, Xanga, LiveJournal, and others. Improves productivity for bloggers who run blogs on different platforms, and bloggers with a large number of blogs.

Blog This. An extension that allows quick posting to all your Blogger blogs. Makes it easy to blog about sites you’re currently browsing. Simply highlight some text and click the blogger icon. A new application window will open with a pre-populated post that has the same title as the webpage you’re on, as well as the highlighted text and a link to the page. From there you can edit the post as you please, and select the blog you want to post on from a dropdownmenu.

Multipress. An extension that allows quick access to the Press This interface of your favorite WordPress blogs, in a similar way to Blog This. Allows quick posting to five different blogs.

WordPress Checker. This extension checks your WordPress blogs for pending comments and spam. Shows approved, pending, spam and total comments for one or more blogs from your Chrome browser.

WordPress Comment Notifier. Notifies when comments are posted on your wordpress blogs.

Tumblr Dashboard. This extension allows access to your tumblelog, and creates new content directly from Chrome.

Share on Tumblr. A Chrome extension that adds one-click submission to your Tumblr blog functionality.

Zemanta. Expands your blogging dashboard by presenting content suggestions based on your blog articles. Supports many blog platforms, Gmail and Yahoo! Mail.

Blog Security. Not a really a productivity tool, but a rather important app that scans your self-hosted WordPress installations, and fixes possible security vulnerabilities accordingly. It also monitors your WordPress blogs for any changes, and patches new threats automatically.

I must say that I’m quite pleased with my new default browser. And with these blogging productivity tools it certainly has become a lot easier, and faster, to manage all my blogs.

Ultimate security for your self-hosted blogs

Unfortunately, our blogs are a constant target to comment spammers and hackers. While comment spammers are mostly out to get exposure to their useless links, hackers are notorious for finding and abusing exploits, “defacing” homepages, and compromising configuration files. If you run self-hosted installations of WordPress, or any other kind of content management system for that matter, you are responsible for the security of your sites. You should consider implementing some basic security rules to close the backdoors, and to prevent spammers from wasting your server resources, and slowing down access for your readers.

The first time one of my blogs was hacked, back in 2009, my homepage was defaced. They uploaded some files to my server, and replaced the .htaccess file. Upon entering my homepage, I was welcomed by a hacker who proudly stated he took control over my website. The next hacking was more deceitful since I didn’t noticed it until I visited my own blog through a Google search. When I clicked the listing I was redirected to a complete different website. It turned out that the wp-config.php file was compromised. I was shocked to say the least, but I used this negative experience to my advantage and quickly learned how to properly protect self-hosted blogs on Apache servers. Never again have any of my sites been hacked since I use these security measures and precautions, and the server load reduced noticeable after most spam was blocked in the process as well.

1. File permissions for wp-config.php
Set the file permissions for wp-config.php or any other configuration file to numeric value 600, so that only Owner Permissions is set to read and write. Nobody should be able to touch your configuration file.

2. Never use a default username like Admin or Administrator.
Brute force attacks or exhaustive key searching are strategies that can in theory be used to hack any password. But in order to log in to your administration panel, you will need a combination of username and password to enter. By choosing a different username rather than the default, you reduce the chances of this combination being cracked.

3. Keep your passwords secure
Basic rules to keep in mind when creating a password; Never include terms that are in the dictionary, names, birthdays, events and predictable number sequences. Never use the same hosting or FTP password for your administration panel. Do not store passwords in your FTP client, trojans were found stealing passwords from FTP clients. Preferable use a browser addon such as lastpass to generate very strong passwords, and to securely store them online.

4. Keep your installation up to date.
Always update your plugins and core installation files as soon as new updates are available. Neglecting to do so could leave your installation vulnerable to attacks. I use a WordPress plugin that automatically sends me an email when a new version is available, update notifier.

5. Use plugins or security patches.
For WordPress powered blogs there a number of plugins available to secure your installation. BulletProof Security protects your website from XSS, CSRF, Base64_encode and SQL Injection hacking attempts. Secure WordPress beefs up the security of your WordPress installation by removing error information on login pages, adding blank index files to plugin directories, hiding the WordPress version and much more.

6. Customize your .htaccess file
A customized .htaccess allows you to block referrer spam, content scrapers, proxy users, and it can even be used to block whole ranges of IP addresses that are known to be exploited. Blocking IP addresses and spam referrers is effective, but should be used with caution as it increases the chance of blocking out legitimate visitors!

Here is an example of a custom .htacces file for wordpress that effectively blocks suspicious activity.

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# Blocks direct requests without referrer to comment posts. blocks most automated comment spam.
# ! EDIT YOUR DOMAIN !
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .wp-comments-post\.php*
RewriteCond %{HTTP_REFERER} !.*yourdomain.com.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) http://%{REMOTE_ADDR}/$ [R=301,L]

# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]

# Block out any script trying to base64_encode data within the URL
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]

# Block out any script that includes a script tag in URL
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]

# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]

# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})

# Return 403 Forbidden header and show the content of the root homepage
RewriteRule . - [F,L]

# SetEnvifNoCase Referrer can be used to block referrer spam. For a list of commonly used spam words see http://codex.wordpress.org/Spam_Words or check your server logs and look for referring spam sites to generate a customized list.

# Keywords example. WARNING, if used improperly you could block legitimate users!
SetEnvIfNoCase Referer "^spamkeyword" spam_ref=1

# Website example:
SetEnvIfNoCase Referer "^http://(www.)?spamdomain.com" spam_ref=1

# Deny access to above spam referrers:
<FilesMatch "(.*)">
Order Allow,Deny
Allow from all
Deny from env=spam_ref
</FilesMatch>

# Block User agents. Most bots you want to block simply ignore the robots.txt file. These rules will deny bad robots, content scrapers, but also proxy browsers.

RewriteCond %{HTTP_USER_AGENT} ^(aesop_com_spiderman|alexibot|backweb|bandit|batchftp|bigfoot) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(black.?hole|blackwidow|blowfish|botalot|buddy|builtbottough|bullseye) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(cheesebot|cherrypicker|chinaclaw|collector|copier|copyrightcheck) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(cosmos|crescent|curl|custo|da|diibot|disco|dittospyder|dragonfly) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(drip|easydl|ebingbong|ecatch|eirgrabber|emailcollector|emailsiphon) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(emailwolf|erocrawler|exabot|eyenetie|filehound|flashget|flunky) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(frontpage|getright|getweb|go.?zilla|go-ahead-got-it|gotit|grabnet) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(grafula|harvest|hloader|hmview|httplib|httrack|humanlinks|ilsebot) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(infonavirobot|infotekies|intelliseek|interget|iria|jennybot|jetcar) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(joc|justview|jyxobot|kenjin|keyword|larbin|leechftp|lexibot|lftp|libweb) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(likse|linkscan|linkwalker|lnspiderguy|lwp|magnet|mag-net|markwatch) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(mata.?hari|memo|microsoft.?url|midown.?tool|miixpc|mirror|missigua) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(mister.?pix|moget|mozilla.?newt|nameprotect|navroad|backdoorbot|nearsite) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(net.?vampire|netants|netcraft|netmechanic|netspider|nextgensearchbot) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(attach|nicerspro|nimblecrawler|npbot|octopus|offline.?explorer) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(offline.?navigator|openfind|outfoxbot|pagegrabber|papa|pavuk) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(pcbrowser|php.?version.?tracker|pockey|propowerbot|prowebwalker) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(psbot|pump|queryn|recorder|realdownload|reaper|reget|true_robot) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(repomonkey|rma|internetseer|sitesnagger|siphon|slysearch|smartdownload) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(snake|snapbot|snoopy|sogou|spacebison|spankbot|spanner|sqworm|superbot) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(superhttp|surfbot|asterias|suzuran|szukacz|takeout|teleport) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(telesoft|the.?intraformant|thenomad|tighttwatbot|titan|urldispatcher) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(turingos|turnitinbot|urly.?warning|vacuum|vci|voideye|whacker) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^(libwww-perl|widow|wisenutbot|wwwoffle|xaldon|xenu|zeus|zyborg|anonymouse) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^web(zip|emaile|enhancer|fetch|go.?is|auto|bandit|clip|copier|master|reaper|sauger|site.?quester|whack) [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*(craftbot|download|extract|stripper|sucker|ninja|clshttp|webspider|leacher|collector|grabber|webpictures).*$ [NC]
RewriteRule . - [F,L]

# Deny access to the .htaccess file
<Files .htaccess>
deny from all
</files>

If you’re site is heavily under attack, or for other reasons, you may want to block a list of IP addresses or a range of IP addresses. It’s even possible to block entire regions of the planet using these ranges. The following resource provides lists of IP ranges that can be used in the htaccess file to deny access. There is a recommended list of exploited servers, and others are available to block countries or regions, such as Eastern Europe, Russia or China.

With these measures in place your blog installation will be a lot more secure. Your site will consume less bandwidth, and access for your readers is optimal. Feel free to post your thoughts and suggestions.

5 Free Webdesign Tools I cannot live without

1. Free tool to optimize, clean and compress CSS stylesheets
CSS (cascading style sheet) deals with the look and formatting of your blog by specifying the style of a range of HTML elements, which are selected by ID, Class, type or relationship. In wordpress blog themes the main stylesheet file is named “style.css” and typically has a filesize of anywhere between 20 and 60 kilobytes.

Using the tool at cleancss.com (which is based on the tidycss script), does not only optimize and reduce the filesize of your stylesheet with an average 25%, it also allows you to compress the code layout. When you set the compression rate to High (moderate readability, smaller size), all your rules will be formatted on one line each. Personally I strongly prefer this code layout over the standard layout, as I find it easier to ‘scan’ my code.

Furthermore, cleancss optimizes selectors and their properties, merges shorthand properties, compresses colors and font-weight, removes unnecessary backslashes, converts the !important hack and removes the last dot-comma ; from each line of code.

2. Validate HTML and CSS markup tool
The CSS optimizer tool is not a code validator. To validate your HTML and CSS code, the nr.1 resource is at the site of W3C, the World Wide Web Consortium, who are the main international standards organization. There you can find both the HTML and XHTML Markup Validator, and the CSS Validation Service.

3. Pixie color picker
Pixie is a nifty tool specifically made for webmasters and designers. Simply point your cursor to any color on your screen, and pixie will tell you the hex, RGB, HTML, CMYK and HSV values. You can also use the keyboard shortcuts CTRL+ALT+C to copy the HTML color value directly, CTRL+ALT+X to open color mixer and CTRL+ALT+Z to open the magnifier. The portable application file of this little tool is only 11Kb.

4. Live Editing, Debugging, Tweaking and Monitoring of HTML elements.
Firebug is an open source web development tool that integrates with the Firefox browser and puts a wealth of utilities at your fingertips. It allows you to edit, debug, tweak and monitor HTML, CSS and JavaScript, while you’re browsing web pages. Firebug also comes with a DOM (Document Object Model) console to help you see how HTML elements relates to each other.

5. jQuery User Interface
jQuery UI is a library of interface components that provides abstractions for interaction, animation and other advanced effects. These are built on top of the jQuery JavaScript library, and the themeable widgets make it easy for web developers to build interactive web applications.

Google XML Sitemap Plugin for WordPress

Google Webmaster Tools invites webmasters and bloggers to submit an XML compliant sitemap so that all posts, pages, categories and other sections of your blog are fully and quickly indexed by the googlebot crawlers.

With your Google account, you can sign up for webmaster tools and use those tools to improve your site’s accessibility. Submitting a sitemap is one of those tools, this will ensure that all your pages are crawled. The ‘Top Search Queries’ feature will help you to get a better insight of how, when and how often your blog posts are displayed and clicked in Google’s search results. The Diagnostics tool will notify you about crawl errors, pages of your site that generate errors such as 404, HTTP errors and more. There is even a tool you can utilize to see which other sites on the web are linking to your blog and particular articles.

Reason enough to use Google’s Webmaster Tools if you are a smart blogger, but how to go about making an XML compliant sitemap and submit it to Google? As always there is a plugin that can do all the work for us. I have been using Google Sitemap generator for wordpress since a long time. It is the perfect plugin to do the job.

Download the plugin here, upload the files to your wp-content/plugins folder and activate the plugin through the administration interface. Before you can use the plugin, the sitemap needs to be build for the first time. You might want to go through the settings for advanced customization first.

After the sitemap is generated it will be located at yoursite.com/sitemap.xml and each time your write a new post or page, the plugin will automatically rebuild the sitemap and notify Google about the new entries in the sitemap.

If you want to benefit and learn from the diagnostics that Webmaster Tools has to offer you will need to signup and verify your site by adding a meta tag with verification code within in the HEAD tag of your header.php template.

Update: Today I discovered a Crawl Error in Google Webmaster tools diagnostics. Google encountered the following issue when crawling my site:

http://www.bloggertools.org/wp-app.php/service 401 error Jul 14, 2011

Turns out it was caused by a setting of the XML sitemap generator plugin, which was in conflict with the real robots.txt file which exists in the blog directory.

10 Best Free WordPress Magazine Themes

Magazine themes with grid layouts are perfect for your news based blogs, as they give more room to showcase your content. I collected and present here ten of the most flexible and innovative FREE WordPress Magazine themes and templates.

Some of these magazine themes may have been inspired by Blueprint CSS, a framework that offers a foundation to build websites with a grid layout.

All themes come with a range of options to showcase your content on the homepage. The idea of a magazine theme is to present content on your homepage in a way similar to how newspapers showcase their news.

Update 2011: When I posted these magazine themes in 2009, most browsers didn’t (fully) support CSS3. Now that Internet Explorer finally offers support for CSS3 in IE9, many new themes use this new version of CSS to add fancy effects to their design without the need of using background images, such as rounded borders, text shadow, border shadow and gradient backgrounds.

Zinmag Tribune
zinmag tribune wordpress theme by web2feel.com
Zinemag Tribune is the ultimate free WordPress theme with newspaper layout. It is bundled with many extra features, and a custom administration panel to enable its different modules. This white professional looking magazine style theme was designed by Jinsona creations, and released under the popular Zinmag series.
LIVE DEMO | FREE DOWNLOAD

Scarlett
Free scarlett theme by web2feel.com
The Scarlett theme is another stylish creation by web2feel.com. It features some nice custom dynamic content elements that are built into it. Multi-level dropdown navigation menu, Tabbed content area, Custom sliding elements with images, and so much more!
LIVE DEMO | FREE DOWNLOAD

The Morning After
The Morning After Magazine Theme by themasterplan.in
The Morning After is an original and professional looking magazine theme, created by Arun Kale. After a brief survey about what features bloggers would want to see in a unique magazine theme on the WordPress forums, Arun created The Morning After theme, considering the user feedback on this question. The Morning After theme is now released under a Creative Commons license.
LIVE DEMO | FREE DOWNLOAD

Magasin Cuatro
Magasin Cuatro - free wordpress theme by paddsolutions.com
Magasin Cuatro is a WordPress Magazine theme with Featured Post, Twitter Account integration, Flickr Thumbnails, Feedburner Email Subscription. This theme is adsense ready and optimized, compatible with the latest version of wordpress, and it has an integrated automatic thumbnail resize feature. It requires a number of free wp plugins to be installed for extra functionality.
LIVE DEMO | FREE DOWNLOAD

Grungezine
Grungezine WordPress Magazine Theme by wspark.com
Grungezine is a nice fixed width, 3 column layout, Magazine-style WordPress theme, created by wpspark. It has some important widgets and features build into it. License: Free to use, must keep the footer intact as is.
LIVE DEMO | FREE DOWNLOAD

WP Magazine
WP Magazine theme for wordpress by gabfire.com
WP Magazine is a flexible newspaper/magazine styled WordPress theme released by gabfire.com. It has 3 columns and a fixed width. Featured content is enabled, and advertising space is available. The theme has been tested with 6 different browsers. Users have contributed to make the theme available in different languages.
LIVE DEMO | FREE DOWNLOAD

Arthemia
Wordpress Arthemia theme by michaelhutagalung.com
Athemia is an innovative creation by Michael Jubel Hutagalung. The theme features paged plugin support, automated navigation page listing, headlines and a pictorial presentation.
LIVE DEMO | FREE DOWNLOAD

Branford Magazine
Branford Magazine free wordpress theme by der-prinz.com
Branford Magazine is a popular theme with some neat features, created by Michael Oeser. It’s an amazing theme combining the very best of two other great magazine layouts; inspiration came from “Revolution theme” by Brian Gardner and the “Mimbo theme” created by Darren Hoyt. This theme is ready for localization, and a language pack is available.
LIVE DEMO | FREE DOWNLOAD

FakeBlog
fakeblog wordpress theme by fakeblog.de
Fakeblog, aka Overstand Theme, is a fresh black/white/orange 3 column Magazine style template for wordpress powered weblogs. It is available in both the English and German language. See the theme live in action on fakeblog.de
LIVE DEMO | FREE DOWNLOAD

Magazeen
Free WordPress Magazeen Theme by smashingmagazine.com
The free wordpress Magazeen theme, created by the talented WeFunction Design Agency, is an advanced magazine look design which includes all the popular features. With the main focus being on typography, grids and magazine style, this theme suits all the needs for your news based blog.
LIVE DEMO | FREE DOWNLOAD

Best Tools for Blogger.com blogs

Creating a blog on blogger is free and fairly easy to do. Your webaddress will be assigned on a blogger.com subdomain, and your blog will be hosted on a Google server, thus you avoid paying for the costs of webhosting and a domainname.

When you have a Blogger blog, I suggest you utilize these 12 best and most popular free blogger tools, used by professional bloggers, to get the most out of your new blog.

  1. FeedBurner is a tool that will generate a smart feed, compatible with all the free feed readers out there. Using the “Burned feed” generated by feedburner is a great way to distribute your content over the internet. Feedburner, recently acquired by Google, also allows you to put +Add buttons for XML, Yahoo, MSN etc. on your site. Monitor the health of your feed by subscribing to FeedBulletin. Get a cool feed count button to show how many readers have subscripted to your blog feed.
  2. Js-Kit is a tool that integrates trackbacks into your blogger blog. It provides other bloggers with a seamless way to add trackbacks to your blog and also imports existing comments and provides live synchronization of new comments with Blogger.
  3. Avantblog is free software that allows you to post articles on your blog using a Palm or Windows CE device.
  4. My Blog Log tracks outgoing links to let you know where your traffic is going. Discover who’s visiting your site, and connect with your readers.
  5. w.bloggar is an application that acts as an interface between the user and one or more blogs. It is a Post and Template editor, with several features and resources that the browser based blog editors do not offer.

WordPress Youtube video blog theme

Turn your WordPress powered site into a Youtube Video Blog.

Most bloggers already know that it’s possible to easily embed flash video’s in blog posts. What’s not as well known is that YouTube creates a thumbnail for each video that we can also embed. This makes it possible to create a video blog with an index of clickable thumbnails.

The free Videographer theme works best with the two different plugins: WP Youtube and WP Postratings.

Once everything is installed you can post video’s, simply by including the unique Youtube video ID’s in a custom field in your wordpress posts. With this brilliant theme you an easily turn your wordpress blog into a video blog.

WordPress 2.5 Released

Time to upgrade your blogs again folks. WordPress 2.5 RC 1 has been released. And this time the changes made are quite drastic. You’ll have to say goodbye to the good old admin interface we’ve worked with for the past years. And accordingly the whole wordpress.org website has been redesigned. Whether you like it or not…

Personally I was so used and familiar to the old admin interface, and frankly I liked it better then this new design, and actually I’m already starting to miss the old look. But let’s have a closer look at the cool new features that come with this upgrade. Its definitely a huge improvement again.

  • New option to add in your blog posts (add video, add audio, add media)
  • Widget-based dashboard
  • Ability to have any number of any widget
  • Undo for comment editing
  • Search for both posts and pages
  • Use wpdb prepare everywhere
  • Switch to expect unescaped data for internal functions
  • XML-RPC refactor

wordpress 2.5 released

WordPress Web2.0 Themes

When I first created this blog, it was my intention to work on my own wordpress themes and release them on this site. However, with so many other opportunities and activities I have online, I couldn’t find the time to start working on a wordpress design. Now we are nine months later, a new year has arrived, and one of my resolutions was to bring new life into some of my neglected websites.

At the moment I find myself almost finished with my very first wordpress theme. This one is not going to be released, as I intend to use it on my own weblog when it’s done, and keep it unique. My 2nd wordpress theme will be released though, and it’s going to be a clean, lite Web2.0 theme.

In the meantime I wanted to share with you some of the themes from other designers that I found when searching for Web2.0 themes. I noticed that many people frequently use the term web2.0 to describe their designs, however, most of them don’t actually have much 2.0 style to be named as such.

Some of the themes that I found to be Web 2.0 Worthy are listed below. These five pretty wordpress themes all feature their own unique characteristics with detail for web 2.0 graphic design elements.


This first theme is called Sodelicious and was created by Rui Castro of web2themes.com. It has a web 2.0 style design with 3 nice features; a Slideshow screen on the left where you can place an animation or featured content, a big sidebar on the right that includes 3 widget sidebars, and 4 social bookmarks buttons that are automatically placed in your posts.


The 2nd theme, made by Aditi Tuteja, was named Curved because of the nice rounded blue corners. This theme supports widgets, and has a nice striped header along with tabbed navigation.


Gossip City is a web2.0 wordpress theme, created by DesignDisease, and is the perfect theme for your gossip and celebrity weblogs. It has a stylish 3-column, widget ready with sweet color palette theme, and was released under the Creative Commons Attribution-Share Alike 3.0 License.


The next theme comes from Ndesign Studio and has a High-tech, glossy Mac style with web 2.0 mini icons. Validated XHTML and CSS, Web 2.0 colors.… the perfect WordPress theme for your technology-related blog.


And finally the last theme is the rather simple looking Webby Blue Design from Justskins.com. This is a 2-column, widgets ready Web2.0 style wordpress theme, with light blue colors. Theme was tested with WordPress 2.2.x.

I hope that this post was useful to you. Make sure to visit this site again anytime next month, hopefully I have released my own 2.0 theme by then.

More visitors to your Blog

When you post a new article on your blog at least once per week, you don’t have to worry that much about getting visitors once your site has an established presence in the search engines. All it takes is to frequently write some unique and quality blog posts, and then the searchengines would automatically send you a ton of traffic for free. And besides that, most blogging systems have features included that enables your site to syndicate it’s content through RSS and pinging services.

But in case you are in need of more readers for your blog, there are plenty of ways to realize that. It’s called Blog Promotion, and it doesn’t necessarily have to cost any money. Below I have pointed out three of the easiest free methods for getting more visitors to your blog.

1. Utilize the potential of content syndication
Like I mentioned above, most blog platforms have syndication tools integrated that will allow you to distribute your content over the web, and with systems such as wordpress you can define a custom list of ping services that will be notified automatically each time when you add new content to your blog. In an instance, a link with a description of your newest blog post could appear anywhere on the web to surfers who use the particular content networks that you’ve pinged.

By default, wordpress has added a limited number of update services to the ping list, including Technorati and Ping-O-Matic. The list can be found under the Options » Writing Tab of the administration panel. It is recommended to manually add at least the more important services, like Google Blogsearch. But many more can be added! There is a comprehensive list of English blog pinging services available on the wordpress codex site.

TIP: It is recommended to make use of the wordpress Optional Excerpt feature, if you don’t want your original post content – or parts of it – to be syndicated through these networks. Many networks redistribute their content which means that other webmasters could easily display your work on their websites using RSS parsers. Using optional Excerpts will prevent your post content from being copied via the RSS source, because it allows you to specify a different feed description for your articles.

2. Gaining more exposure with the PingBack feature.
PingBack is a weblog feature meant to link related blog posts from different authors together. It works like this: If you include a link in one of your articles to another blog post that has pingback enabled, then the author of that blog would get a notification in the form of a pingback, and would have to approve it as if it was a comment. When approved, a link with description of your post would be automatically included as a comment, and the pingback is completed. This could ultimately drive more blog readers to your site.

3. Submitting to Blog Directories
Submitting your site to Blog Directories is usually free, however in some cases you are required to link back to them somewhere on your site or in a post. But let me briefly explain how submitting to Blog Directories could benefit your weblog. First of all, your listing would of course generate some degree traffic for your blog. But also, a relevant link is seen by the search engines as a recommendation, a “vote” if you will, for your site. By gaining more “votes”, your rankings in the search results of these engines would improve, which could mean they would send you even more traffic.

I will end this post with a long list of blog directories to which you may submit your link for free. I will keep this list updated so be sure to visit back once in a while. Furthermore I wish you all the best for the new year!

Share Blogger Tools

Most Popular Posts

Google XML Sitemap Plugin for WordPress

Google XML Sitemap Plugin for Wordpress

Google Webmaster Tools invites webmasters and ...

WordPress adsense theme – WP Colors

Wordpress adsense theme - WP Colors

Wordpress adsense themes are the easiest ...

RunPHP – Include PHP in your wordpress blog posts or pages

RunPHP - Include PHP in your wordpress b

RunPHP by James van Lommel, is ...

Best Tools for Blogger.com blogs

Best Tools for Blogger.com blogs

Creating a blog on blogger is ...

WordPress Youtube video blog theme

Wordpress Youtube video blog theme

Turn your Wordpress powered site into ...

10 Best Free WordPress Magazine Themes

10 Best Free Wordpress Magazine Themes

Magazine themes with grid layouts are ...

WordPress Web2.0 Themes

Wordpress Web2.0 Themes

When I first created this blog, ...

Welcome to Bloggertools.org

Welcome to Bloggertools.org

Welcome to my newest Blog. On ...

More visitors to your Blog

More visitors to your Blog

When you post a new article ...

Embed youtube videos in wordpress with KLM Flashembed plugin

Embed youtube videos in wordpress with K

In this post I'm going to ...

Categories