Wordpress for the iPod Touch (and iPhone too)
Woohoo a free Wordpress app was just released for the iPod touch (and iPhone too). Expect this to be featured in a podcast soon
07 – Installing Google Analytics – Take 2
In this episode I show you how to install Google Analytics in Wordpress without installing a plugin. I walk you through editing the PHP files to include the Google Analytics code.
A cool PHP Script
Here is a PHP script I put together for a web site I am working on. It retrieves a random image from my flickr stream. The nice thing is you can treat the php file like a image. I needed this so that I could reference it from a css file. Enjoy, but don’t forget to change the flickr information to your own.
<?php
$file =file_get_contents(‘http://www.flickr.com/badge_code_v2.gne?count=1&display=random&size=m&layout=v&source=user&user=19617468@N00&tag=&group=19617468@N00′) preg_match(‘#<img (.*)src=”(.+)”#U’, $file, $r);
$photo = $r[2];
$contentType = ‘Content-type: image/jpeg’;
header ($contentType);
readfile($photo);
?>
Wordpress Howto 05 – Google App (free email)
In this episode I show you how to sign up for and configure google apps. This allows you to have free gmail style email on your own domain name. It’s easier than you think.
Show notes after the break Read the rest of this entry »
Wordpress Howto 04 – Installing Plugins and Google Analytics
In this howto I show you how to download and install the semiologic google analytics plugin so that you can track visitors to your site and gather useful stats.
Read the full article for a full transcript





