June 28th, 2006 @ 4:27 am by Kalina
If you’re a plugin freak like I am, then you’re sure to enjoy this list of invaluable Wordpress plugins. I’ve tried them all, I like the “Related Entries” plugin the best. That post leaves me longing for more, too busy to go on my own search these days.
If you find those plugins useful, you can go digg the article.
June 23rd, 2006 @ 6:02 am by Kalina
Inspired by Solemn Orange, this will be a series… not sure what to name the series yet, but this is the second release in this series.
Tranquil Rose works with Wordpress 2.0.3 and it is Widgets Compatible.
The demo link and download link can be found on the
Tranquil Rose page. Please leave feedback about this new theme on that page.
Technorati Profile
June 19th, 2006 @ 2:21 pm by Kalina
It’s been awhile since my last Free Wordpress Theme release. Originally I was designing this new theme for my use only but decided to release it.
Solemn Orange works with Wordpress 2.0.3 and it is Widgets Compatible.
The demo link and download link can be found on the
Solemn Orange page. Please leave feedback about this new theme on that page.
I have to get some sleep now. The other themes will be compatible with Widgets very soon as well.
June 1st, 2006 @ 5:17 pm by Kalina
The latest in the Wordpress 2.0 series has been released today, http://wordpress.org/development/2006/06/wordpress-203/
Time to upgrade, everyone.
June 1st, 2006 @ 3:16 pm by Kalina
I found this today,
I ran this query on my Wordpress database.
CREATE TABLE `ip` (
`id` int(5) NOT NULL auto_increment,
`ip` varchar(50) NOT NULL default ”,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
And placed this php code in my footer.
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$sql = “INSERT INTO `ip` ( `id` , `ip` ) VALUES ( ”, ‘$ip’)”;
$query = mysql_query($sql);
print “Logged: $ip”;
?>
I just like having IP’s logged in my database forever. Maybe you’ll find that handy.