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
How to Add and Delete Categories in Wordpress Blog
November 6, 2009 by admin
Filed under How-To, Video Tutorials
How to Add/Delete Categories in Wordpress Blog. So guys you are here to find a solution for editing categories which plays vital role in your blog. Here are some instruction for you if you are not aware already.
Add New Category :-
There are two types by which you can add categories
Type 1 :- (Easy)
- Go to Admin Panel
- then click on new post
- in post editor , there is categori option, then click on “+ Add New Category“
- give proper name and
- done.
Type 2 :- Give manipulation option via this as this will allow you to specify different name of category and slug for url of category.
- Go to Admin Panel
- then click on post –> Categories
- Write Category name
- Write Category Slug ( Generally its same as Cat.)
- Select Parent directory if any.
- Additionally you can give description to your category which is not possible.
- done.
Now coming to deletion of Categories.
Delete Any Category :-
- Go to Admin Panel
- then click on post –> Categories
- Hover over your category to delete,
- You will see delete link below that , press it
- done.
Note :-
- You can’t delete “Uncategorized” category as its default though you can rename it if you want.
- Deleting any category result in remove of the category from all post if any. So if post have only one category it will be assigned “Uncategorized”.
Here is a video of how to do this all the stuff.





