WP Rocker is an aggregation of sites chattering about WordPress.
Featuring more than 250 sources. Suggest a site »
Featuring more than 250 sources. Suggest a site »
Stop Downloading WordPress Themes from Shady Sites
A Solution For The WordPress Gallery
WordPress Database Repair Script In 2.9
WP Worldmap – Get to Know Your WordPress Neighbour!
How to show WordPress post attachments
-
12 Dec 2009, 11:26 AM
Stop Downloading WordPress Themes from Shady Sites
So, you go to Google and type in a search for “WordPress themes.” You skip past the official WordPress theme directory because out of the 1,000+ themes hosted there, you couldn’t find one you liked. So you move on to another site that has a great collection of free themes, you download one you like and... Read More » -
11 Nov 2009, 08:25 AM
A Solution For The WordPress Gallery
There are things in WordPress, I do not like. This includes the gallery. Not that the idea behind it is bad. It is just poorly implemented. But only criticizing is not fair. Let's see what you can do better. The problem of the gallery is the style sheet, which is simply written in the Post. So that the page no... Read More » -
11 Nov 2009, 11:21 AM
WordPress Database Repair Script In 2.9
A little tip for all users of the existing beta of WordPress 2.9 and for all who wish to update soon to the new version. With version 2.9 WordPress conducts its own routine to optimize the database. Previously it was done by either Plugins or via SQL access. From the next version this function is implemented in the core... Read More » -
11 Nov 2009, 11:10 AM
WP Worldmap – Get to Know Your WordPress Neighbour!
Great idea by Oliver Schlöbe of WPSeek , who created the WP Worldmap. Now you can see where you can find all those WordPress Users and Developers. Don't forget to put your location and profile on the map. It's easy to zoom and move around. Great tool to get to know where a WordCamp is coming up or if another... Read More » -
11 Nov 2009, 01:04 AM
How to show WordPress post attachments
To achieve this recipe, just paste the following code anywhere in your post.php file and attachments will be displayed. $args = array( 'post_type' => 'attachment', 'numberposts' => null, 'post_status' => null, 'post_parent' => $post->ID ); $attachments = get_posts($args); if ($attachments) { foreach... Read More »
