Articles
WordPress 2.6.5
WordPress 2.6.5 is immediately available and fixes one security problem and three bugs. We recommend everyone upgrade to this release.
The security issue is an XSS exploit discovered by Jeremias Reith that fortunately only affects IP-based virtual servers running on Apache 2.x. If you are interested only in the security fix, copy wp-includes/feed.php
and wp-includes/version.php
from the 2.6.5 release package.
2.6.5 contains three other small fixes in addition to the XSS fix. The first prevents accidentally saving post meta information to a revision. The second prevents XML-RPC from fetching incorrect post types. The third adds some user ID sanitization during bulk delete requests. For a list of changed files, consult the full changeset between 2.6.3 and 2.6.5.
Note that we are skipping version 2.6.4 and jumping from 2.6.3 to 2.6.5 to avoid confusion with a fake 2.6.4 release that made the rounds. There is not and never will be a version 2.6.4.
check out the story at WordPress Development
Premium
Revolution Two: Album theme
Benefits include the Album theme, unlimited theme support answered by our experts, customization techniques with our detailed theme tutorials and professional design services available by our list of recommended designers.
Price:
Single License: $59.95 Buy Now!
Pro Plus All-Theme Package: $199.95 Buy Now!
Plugins
Search Unleased: A custom WordPress plugin
Most all WordPress theme’s use a a simple search form to search your site. But what it you wanted to search your whole site and not just your posts.
Search Unleashed comes into the picture. Search Unleashed performs searches across all data, including that added by plugins.
Some features of this plugin are:
- Full text search with wildcards and logical operations
- Search posts, pages, comments, titles, URLs, tags, and meta-data (all configurable)
- Search data after it has been processed by plugins, not before
- Search highlighting of all searches, including titles and comments
- Search highlighting of incoming searches from Google, Yahoo, MSN, Altavista, Baidu, and Sogou
- Search results show contextual search information, not just a post excerpt
- Record search phrases and display in a log
- Exclude specific posts and pages from results
- Compatible with WP-Cache
- Supports WordPress 2.0.5 through to 2.7
- No changes required to your theme
Tips & Tricks
Limit the characters that display on the_title
Ever wanted to display the title of a post somewhere but limit the amount of characters that are shown? For instance, this post has a very long title, and if I were to use <?php echo the_title() ?>
it would show as follows: Limit the characters that display on the_title.
That may not fit well on one line in lets say a widget or small width div
. So here is a neat trick you can use:
<?php $title = the_title('','',FALSE); echo substr($title, 0, 11); ?>
Pretty simple huh, just note the bold numbers, in this case 11 character would output like this: Limit the c.
Thanks to Tattershall Way for this snippet.
-
Tips & Tricks5 months ago
WordPress Security Hacks
-
Pages7 months ago
Write For Us – Guest Post
-
Showcase3 days ago
StylizedWeb.com
-
News7 months ago
How to: Show/Hide any div box with jQuery in WordPress
-
Tips & Tricks6 months ago
Remove the title attribute using jQuery
-
Tips & Tricks4 months ago
How to: show/hide a widget in WordPress with jQuery
-
Plugins4 months ago
Top Membership plugins
-
Tips & Tricks1 day ago
Limit the characters that display on the_title
The Man
November 26, 2008 at 10:51 pm
I am the man, I much enjoyed the updated WP!