WordPress Security Hacks
Hi guys this is my first post on wpcult the great site Austin built. Hope you guys find it usefull.
If you run a blog using the wordpress software then your blog is a target to hackers. Below I will list some hacks and just how they can help you keep your business/site safe.
The following is code to Block Bad Queries and protect your blog from malicious URL Requests.
Place the following code into a text file and name it what ever you like for example blockbadqueries.php upload it to your plugin folder and activate it in your wordpress
Click here to continue readingWP Cron has broken since 2.9 update
Did you make the update to WordPress 2.9? Well you may want to check out this post regarding an issues with WP Cron, which controls you auto (scheduled) posts. I know one of my sites has an issue, so I installed the three files and it fixed the issue.
Click here to continue reading
Two point nine and 2010
Well we’ve been presented with an late Hanukkah gift, but an early Christmas gift! WordPress 2.9 has been released today. Also announced a new default theme called 2010 slated for release with version 3.0!
Click here to continue reading
WordPress 2.9 RC-1
BuddyPress plugin for single user WordPress
For those who are familiar with BuddyPress, it’s a plugin for WordPressμ only. But Scott has created a plugin that would allow for single user compatibility.
Click here to continue reading
Think outside the box
Start
How to: cut your server CPU load
It didn’t take long to add a point 1
WordPress 2.8 RC 1
The actually release of WordPress 2.8 announced
The WordPress development blog has put a date on the release of 2.8, plus some notes.
Click here to continue reading
WordPress 2.8 beta 2 now available
WordPress announced the release of 2.8 beta 2, download it or check out the changes since beta 1.
Click here to continue reading
Stats working in your time zone
For the longest time I remember checking out my WordPress stats via this Stats plugin and it always cut of my day at 4pm. This was because it only collected the stats via UTC time. Well check out this post where andy talks about the latest version 1.4 retroactively changing depending on your blog’s timezone.
Click here to continue reading
WordPress design tweak results are in
Did you vote? I did. Did your vote win? Mine didn’t
Results.
Click here to continue reading
Acquisition of wp.com
Just announced by Matt himself, that they finally acquired wp.com from Yahoo. Head over to the WordPress.com blog, leave a comment for what you think they should do with the domain.
As for now the domain: www.wp.com redirects to wordpress.com.
A simple way to query posts
Here is a simple way to call query_posts with an array of options. For all options you my use visit: WordPress Codex.
<?php $my_query = array('showposts' => 4, 'post__not_in' => $do_not_duplicate); ?> <?php query_posts($my_query); ?> Click here to continue reading