Category Archives: Wordpress

How To Get YouTube Thumbnail Images

YouTube thumbnails can be fetched using YouTube’s Video API. YouTube API responses may contain multiple thumbnail images for a video, each of which is identified by a <media:thumbnail> tag. In order to view or download the thumbnail from a YouTube video. Change the following video id in the URL to fetch the image http://img.youtube.com/vi/VIDEO_ID/#.jpg The video… Read More »

How to Get the WordPress Short URL

WordPress lanunched shot Url for WordPress sites with the domain wp.me.This shot url stay on the header of the theme when you observe the source of the page.This function will help you to display it on your theme. In WordPress site source page < link rel=’shortlink’ href='<a href="http://wp.me/p1WvAX-1f0">http://wp.me/p1WvAX-1f0′ /> This is not see to the… Read More »

Remove the unwanted fields & add new fields to WordPress contact

Remove the unwanted fields from WordPress contact info In WordPress there are fields such as aim, yim, jabber which are not used by most of the sites.It can be removed by adding this code to the theme functions.php file. function extra_contact_info($contactmethods) { unset($contactmethods[‘aim’]); unset($contactmethods[‘yim’]); unset($contactmethods[‘jabber’]); return $contactmethods; } add_filter(‘user_contactmethods’, ‘extra_contact_info’); Add new fields to WordPress contact… Read More »

Custom widget for WordPress Dashboard

Create custom Dashboard widget from WordPress Using custom dashboard widget you can run news announcements to authors,subscribers.Here we are sharing how to create a custom widget for your dashboard.Add this code  following code to your WordPress theme function template.That it’s you can see the dashboard custom widget on your WordPress dashboard. Appearance–>Editor–>functions.php [code] add_action(‘wp_dashboard_setup’, ‘my_custom_dashboard_widgets’); function my_custom_dashboard_widgets() { global… Read More »

Add Authors Profile to WordPress post

Add Authors Profile to WordPress post In this we do like to share how to add  authors profile on WordPress posts.Copy the below code and add it to you single post.php file.Add it after the loop of the post. < ?php echo get_avatar( get_the_author_id() , 100 ); ?> Article by

How To:Add Facebook Like & Google Plus +1 Button to WordPress Post without Plugin

Advantages of Facebook Like Button Facebook is the world most visited social networking site & it almost holds the worlds population.Every one from class 5 to Grandparent now has an account in Facebook.Most people stay connected 24*7 using their mobiles devices.Each user has news feeds where they see updates from friends.This news Feed shows their like and comments to… Read More »