Keyword Shortcuts for Wordpress
Keyword Shortcuts for Wordpress. Here are some of the quick shortcuts to perform operation in wordpress thus minimizing the use of mouse.
- Bold: Alt+SHIFT+b
- Italics: Alt+SHIFT+i
- Link: Alt+SHIFT+a
- Blockquote: Alt+SHIFT+q
- Code: Alt+SHIFT+c
- Read More: Alt+SHIFT+t
- Unordered List (ul): Alt+SHIFT+u
- Ordered List (ol): Alt+SHIFT+o
- List Item (li): Alt+SHIFT+l
- Advanced Editor: Alt+SHIFT+v
- Publish the Post: Alt+SHIFT+p
- ins: Alt+SHIFT+s
- del: Alt+SHIFT+d
- Unquote/outdent: Alt+SHIFT+w
- Undo: Alt+SHIFT+u
- Redo: Alt+SHIFT+y
- Edit HTML: Alt+SHIFT+e
- Align Left: Alt+SHIFT+f
- Align Center: Alt+SHIFT+c
- Align Right: Alt+SHIFT+r
How To Display Post Word Count in Wordpress
How To Display Post Word Count in Wordpress. So you are here in search to display how many words are there in particular post, so you are at right place the below trick will match your needs. Here is some code which you need to add in function.php file of you wordpress themes to display the actual posts word count.
Here are step by step guide to display word count.
- Open function.php
- Add the following code in it before closing tab “?>”
- Add the following line where you want to display word count, generally in index.php or single.php
- Its Done.. Check the post.
function wcount(){
ob_start();
the_content();
$content = ob_get_clean();
return sizeof(explode(" ", $content));
}
<?php echo wcount(); ?>
If this won’t work then comment , will try to solve the error.
Source : Wprecipes
Wordpress Releases v2.9
December 19, 2009 by admin
Filed under Press Releases
Hell Yeah today wordpress releases its latest development , Wordpress Version 2.9. Now Wordpress v2.9 is available to download with latest enhanced security functions and a lot more admin features. WordPress version 2.9 “Carmen” is named in honor of magical jazz vocalist Carmen McRae.
New Features in Wordpress v2.9
- Global undo/”trash” feature, which means that if you accidentally delete a post or comment you can bring it back from the grave (i.e., the Trash). This also eliminates those annoying “are you sure” messages we used to have on every delete.
- Built-in image editor allows you to crop, edit, rotate, flip, and scale your images to show them who’s boss. This is the first wave of our many planned media-handling improvements.
- Batch plugin update and compatibility checking, which means you can update 10 plugins at once, versus having to do multiple clicks for each one, and we’re using the new compatibility data from the plugins directory to give you a better idea of whether your plugins are compatible with new releases of WordPress. This should take the fear and hassle out of upgrading.
- Easier video embeds that allow you to just paste a URL on its own line and have it magically turn it into the proper embed code, with Oembed support for YouTube, Daily Motion, Blip.tv, Flickr, Hulu, Viddler, Qik, Revision3, Scribd, Google Video, Photobucket, PollDaddy, and WordPress.tv
So don’t wait and upgrade your wordpress blog to the latest version to avoid security threats. Download wordpress v2.9 here





