Author Archive

Pimp your wp-config.php

Easily, the most important file in your WordPress installation is the wp-config.php file. It serves as your site’s base configuration file, controlling key aspects of WordPress’ functionality and enabling WordPress to do mission-critical stuff like connect to the database. Without…

Your Facebook Fan Page and SEO

npAlthough the main purpose of a Facebook fan page isn’t for SEO, there’s no point ignoring SEO completely, so it was nice to come across this article on SEO for your Facebook Fan page on the SaveDelete blog.…

Concurrence


Concurrence

Type – templates
Authorfreecsstemplate

Added – 2010-08-12
Downloads – 4

A two-column, fixed-width design for 1024×768 screen resolutions.

This post was generated by an RSS Feed from Free Website Templates

Recommended WordPress Plugin – WYSIWYG editor for WordPress

OK, the built in editor in WordPress isn’t BAD, but it does make some things a bit difficult, so we love this plugin: Dean’s FCKEditor for WordPress

It makes adding blogs and comments to your WordPress blog as…

Are your efforts online paying off? Really?

TWO DOLLAR BILLIt’s all very well frantically beavering away: Facebooking this, Tweeting that, Blogging here, Commenting there, updating your YouTube Channel and spending an age answering questions on LinkedIn – but  are you tracking and measuring the results of all this activity?…

Enormous


Enormous

Type – templates
Authorfreewpthemes

Added – 2010-08-03
Downloads – 0

Two-column free wordpress template, easy and very user friendly.

This post was generated by an RSS Feed from Free Website Templates

Optimizing WordPress Permalinks

Configuring your WordPress permalinks is simple and only takes a second, but understanding what they are and how they work is key to setting up the best permalink structure possible. Your site’s permalinks are like the street address for your…

Word-Wrap: A CSS3 Property That Works in Every Browser

Word-Wrap: A CSS3 Property That Works in Every BrowserOkay, this is not exactly the kind of CSS property that’s going to be used in every design. But it is a very useful one when you need it, and some might say it’s much more practical than some of…

Undertaking


Undertaking

Type – templates
Authorfreecsstemplate

Added – 2010-08-22
Downloads – 1

A two-column web design, best for your personal and business blogging.

This post was generated by an RSS Feed from Free Website Templates

How to display your average feed readers

As usual, the first thing to do is to paste the function in your functions.php file:

function get_average_readers($feed_id,$interval = 7){
	$today = date('Y-m-d', strtotime("now"));
	$ago = date('Y-m-d', strtotime("-".$interval." days"));
	$feed_url="https://feedburner.google.com/api/awareness
/1.0/GetFeedData?uri=".$feed_id."&dates=".$ago.",".$today;
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
	curl_setopt($ch, CURLOPT_URL, $feed_url);