wordpress
Neat wordpress trick
Extract all the emails from the comments in a wordpress blog.
I haven’t tried this yet but saw it on a webmaster forum.
<?
$db_host = “localhost”;
$db_user = “username”;
$db_password = “password”;
$db_name = “database”;
$connect=mysql_connect($db_host,$db_user,$db_password) or die(mysql_error());
$db=mysql_select_db($db_name, $connect) or die(mysql_error());
$result=mysql_query(“select comment_author_email from wp_comments”);
while($row=@mysql_fetch_assoc($result))
{
$email=$row[comment_author_email];
echo $email;
}
?>
If you enjoyed this post, make sure you subscribe to my RSS feed!
Places to get Wordpress themes
Here’s a nice starting list to browse Wordpress themes. Some of these sites are updated daily.
http://www.themebot.com
http://www.themesbase.com
http://www.wpskins.org
http://www.wpsnap.com
http://www.wpthemesfree.com
http://www.webmaster-talk.com
http://www.csschat.com
http://www.freelayouts.com
http://board.themevibes.com/wordpress-themes/
http://forums.digitalpoint.com
http://freewpthemes.info
http://themes.blogflux.com
http://www.bloggingthemes.com
http://www.freewordpressthemes.com
http://www.fresheezy.com
http://www.themes.rock-kitty.net
http://www.themes.iwebnet.org
http://www.wptheme.net
http://www.templatenavigator.com
http://www.themespack.com
http://www.webdevforums.com/
http://www.webdesignerforum.co.uk/
http://wordpress.mu/
http://www.templatesforums.com/
http://www.themes-wp.com
http://www.thatsprofound.com
http://wptemplates.org/
http://www.wordpresstheme.in
If you enjoyed this post, make sure you subscribe to my RSS feed!
Nice wordpress theme
I like wordpress themes which include Ad support since they indicate an awareness of monetizing a blog. Here are two which do just that.
Theme name : Hall Of Excitement
Features:
- Unique Design
- xHTML / CSS Valid
- Easy installation
- Ready to use
- Clean code
- Compatible with WordPress Version 2.2.1, 2.2.2 and 2.3
Screenshot ( Low Resolution ):
Live Demo [...]
How to make money with blogs (blogging)
Most of the required items for this are free EXCEPT the hosting part. Although there’s some free hosts, your content doesn’t stay yours since the free host (like blogger, blogsome, blogcities, wordpress.com, etc) might removie it. So, it’s probably wise to blow $100 or so on some cheap hosting. Plus, using wordpress or a custom [...]
Automate your Schedule publishing Wordpress posts
One great time-saving feature for publishing in Wordpress is the Timestamp option. Yet, many people do not use this to their advantage. Some don’t know it exists.
After writing a post, check the Edit Timestamp option, and select the publishing date. Next, click Publish. In your Wordpress dashboard, you should see the post scheduled for future [...]
