Archive for 2008

Uber unique Prize for Plugin Competition

9
responses

Kym Huynh is a songwriter and is writing a song about WordPress (just for fun I have been told) and has offered to write a song and record it professionally in a studio for the winner of the WordPress Plugin Competition! What an amazing prize! I love it when WordPress Samaritans offer their thanks in their own way. It has been added to the growing list of prizes for the competition. Thank you Kym! For those that have not noticed, we have eleven plugins entered/announced for the plugin competition already, with many more in the works. Have you signed up yet?

[Continue Reading...]

WordPress Plugin releases for 6/22

12
responses
by
on
June 24th, 2008
in
WordPress Plugins

Increase Sociability Increase Sociability shows customized messages to users who visit your site through StumbleUpon, Digg. The messages enhances your chances to gain better traffic from social networking sites. Hoard Hunter Hoard Hunter is an online treasure map game designed and developed for people who would like an easy (and fun) method of fund raising online. Nofollow Links in Posts Nofollow Links in Posts plugin enables you to add the nofollow attribute into links in a post within a specified category. Newspaper Style Posts Newspaper Style Posts is a simple plugin that splits your post into two columns, as you find in newspaper articles. SEO Smart Links SEO Smart Links can automatically link keywords and phrases in your posts and comments with corresponding posts, pages, categories and tags. Platinum SEO Platinum SEO offers all the features of All in One SEO plugin plus more. You can import your settings from […]

[Continue Reading...]

Comment License Made Easy

14
responses
by
on
June 23rd, 2008
in
WordPress Plugins

Not too long ago, I published a post which dove into the controversial subject of comment ownership and I must say, you guys and gals came up with quite a bit of discussion points. In that post, here is how I described my position on the matter: I don’t believe a commenting bill of rights needs to be created in which all blogs should follow. However, I do think that each blogger should create and make publicly accessible a commenting policy. This policy should clearly explain what you as the blog author will do with comments posted on your site, who retains ownership of those comments and explain circumstances which would require you to edit an end user’s comment. For those of you that agree, I’d like to draw your attention to Alex King’s Comment License WordPress plugin. This plugin makes it as easy as 1 2 3 to add […]

[Continue Reading...]

Andy Skelton Introduces Batcache

9
responses
by
on
June 22nd, 2008
in
WordPress Plugins

So far, there are two excellent performance enhancing caching solutions available for WordPress, WP-Cache and WP-SuperCache. Both do an awesome job of caching posts/pages to help keep your website from falling off the map in the middle of a Digg effect. Now, there is a new entrant in the caching arena called Batcache which was created by Andy Skelton. This plugin is meant to be used in situations where file-based caching is either not practical, or is not desired. According to Andy, development testing showed a 40x reduction in the time it took to generate pages. Pages that were generated in 200ms ended up being served from the cache in only 5ms. Batcache uses Memcached to store and serve rendered pages. It’s not as fast as Donncha’s WP-Super-Cache but it can be used where file-based caching is not practical or not desired. The basic premise of the plugin works similar […]

[Continue Reading...]

WordPress: Did you Know?

29
responses
by
on
June 21st, 2008
in
LinkyLoo

That if you change your URI after a post has been published, the old URI continues to work while the links are changed to the new one?

[Continue Reading...]

WordPress Theme Releases for 6/20

9
responses

Two Column Themes Natural Power Natural Power is a two column theme, widget ready, that comes with four different colored header graphics that can easily be changed in the options panel included with the theme. Blue Block Blue Block is a two column widget-ready theme. The theme comes build in with banner ad integration. The content are is quite smaller compared to other two column themes. CheckMate CheckMate is a two column theme with 10 widgetized areas. The themes comes with 7 color options. Out of the Box Out of the Box is a two column widget ready theme. The theme has a widgetized sidebar and footer area along with Gravatar support for WordPress 2.5 and above. TechJunkie TechJunkie is a two column widget-ready theme with 4 widgetized areas including 3 in the footer. The theme comes built in with Gravatar support. Whisky Air Whisky Air is a two column […]

[Continue Reading...]

How to: Offsets and Paging

31
responses
by
on
June 19th, 2008
in
HOW-TO, WordPress FAQs, WordPress Hack

Reader John writes in: How does one use paging with an offset? Doing so breaks the navigation controls. The problem with using an offset in a query is that WordPress ignores any reference to paging. In other words, you can use an offset and paging, but not both together. This can be solved by tapping into the post_limits filter. Step 1: Add the ‘my_post_limit’ Function The my_post_limit function is what the post_limits filter will use to update the standard loop query. We’ll use the function to use paging and offsets together. This function should be placed in your theme’s functions.php file. function my_post_limit($limit) { global $paged, $myOffset; if (empty($paged)) { $paged = 1; } $postperpage = intval(get_option('posts_per_page')); $pgstrt = ((intval($paged) -1) * $postperpage) + $myOffset . ', '; $limit = 'LIMIT '.$pgstrt.$postperpage; return $limit; } //end function my_post_limit Step 2: Add the Filter Reference <?php add_filter('post_limits', 'my_post_limit'); ?> <div id="recent"> […]

[Continue Reading...]

WordPress Theme Release for 6/18

12
responses

One Column Themes WP Pix WP Pix is a one column theme with no sidebars. The theme can be use by photo bloggers. The theme comes in with two different page templates one for displaying a blog and another for displaying portfolios. Two Column Themes Happy Cyclope   Happy Cyclope is a 2 column widget-ready theme. The theme is easy-to-customize, and displays the category pages and archives as lists. Big Brain Big Brain is a two column widget-ready theme. As the name suggests there is image of big brain in the header. The theme also uses bigger fonts for post titles and content. Ndomche Summary Ndomche Summary is a two column theme. The theme has a grid based style and has only been tested with WordPress 2.5 and above. Aurora Aurora is a two column widget-ready colors. The theme makes use of dark colors. Elegant Elegant is a pleasant looking […]

[Continue Reading...]

$3500+ purse for WordPress Plugin Competition

14
responses
by
on
June 18th, 2008
in
WordPress Plugin Competition

. . . and growing! We have had a couple of really large (Thanks to Matt and Automattic for their generous contributions towards the competition) and some smaller donations towards the final set of prizes for the plugin competition with the total purse standing at over $3500 dollars. Thanks to everyone who has donated money and time towards the competition to help make it a success. The community really appreciates your involvement. We continue to look for donations and sponsors to make the pot sweeter. This is your chance to not only showcase your work to the WordPress community but to also win fabulous cash prizes. If you are planning on releasing a plugin for the competition, head over to the plugin competition blog, register yourself and post about your plugin there. We have had a spat of registrations but the number of announcements on the blog has been much […]

[Continue Reading...]



Obviously Powered by WordPress. © 2003-2013

css.php