Articles
WordPress 2.7 Beta 3

WordPress 2.7 Beta 3 has been released for your testing pleasure. Here are some of the changes since Beta 2 (over 160 changes in total):
- Numerous style improvements and refinements.
- All admin notices now go under the page title.
- PHP Notice fixes.
- Dashboard widget options now properly save.
- Menu fixes.
- New design for Quick Edit.
- Canonical feed URL fixes.
- Walker fixes.
- An update for Hello Dolly.
- Plugin installer updates.
- Numerous font updates.
- Updated login logo.
- Switch position of “Save Draft” and “Preview” buttons in publish module.
- File upload support for MS Office 2007+ file formats.
- Media upload buttons won’t show if the user doesn’t have the upload capability.
- Canonical redirects only do yes-www or no-www redirection for domains.
- Shift-click checkbox range selection improvement.
- Add New User page now separate.
- Tag suggest only suggests tags (not other taxonomy terms).
- QuickPress shows “Submit for Review” if user cannot publish.
- Private posts/pages, and password-protected posts/pages are rolled into new “Visibility” section of publish module.
If you have already installed Beta 1 or Beta 2, you can update to Beta 3 via the Tools -> Update menu. If you have problems, or if this is your first time in the 2.7 beta ring, you can download and upgrade the old fashioned way.
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