You might not have noticed but the fact is WordPress by default displays .jpeg image format with only 90% of the quality of the original uploaded image, This is a measure to speed up your website without causing much chaos :) Though this is not a ... Read Further ➟
How to Display Post Author Gravatar Image in WordPress
Sometimes you may want to feature the post author in separate space inside the post like about author box, Here is a simple PHP code snippet which returns the current post authors Gravatar with a desired image size. <?php echo get_avatar( ... Read Further ➟
How to Automatically Trim WordPress Post URL to Make it Readable and SEO Friendly
In WordPress, Every post will be assigned with unique URL called "Slug". If you didn't manually edit it, Slug is automatically assigned to your post depending on the permalinks settings and post title. Mostly we all are in so much rush that we ... Read Further ➟
How to make Youtube Videos Mobile Responsive in WordPress
Responsiveness is the new trend in WordPress Theme Industry,Nobody likes to maintain a separate plugin or separate theme for presenting your site in mobile devices. Though all most every WordPress theme now comes with a mobile responsive design ... Read Further ➟
How to Nofollow all links in Particular Category or Tag
As wikipedia notes nofollow is a value that can be assigned to the rel attribute of an HTML element to instruct some search engines that a hyperlink should not influence the link target's ranking in the search engine's index. Occasionally you may ... Read Further ➟
How to Exclude Posts of Particular Category from Front Page : Genesis Framework
Sometimes you might need to exclude certain posts from Home/Front page.This post will help you to do that in Genesis Framework. 1. Create a category and assign the posts to that category. 2. Now go to Posts >> Categories and Edit the ... Read Further ➟
How to enable Shortcodes in WordPress Widget Area
In previous article I showed How to execute PHP code in Text Widget without using Plugin and this post also deals with similar kind of stuffs. Shortcodes are piece of reference code which executes specific set of codes when it called.Shortcodes ... Read Further ➟