List/Grid Wordpress Tips Subscribe RSS feed of category Wordpress Tips
Find a content with post id in wordpress
The following example will show the content of post id 30 <?php $post_id = 30; $post = get_post($post_id); $title = $post->post_title; echo $title; echo $post->post_content; ?> You can customize this…
How to check login status in wordpress
Using “is_user_logged_in” function You can check user login or not. e.g <?php if(is_user_logged_in()): ?> echo “Insert your HTML or PHP code here”; <?php else: wp_die(‘Sorry, you must first <a href=”/wp-login.php”>log…
Auto update your twitter account when you update your wordpress blog
You can update your twitter account update automatically when you update your wordpress blog. It is possible with the help of Tweet-this Plugin. This plugin can also tweet new blog…
How to Update your WordPress Blog
Update your wordpress old version into current new version following steps to update your Blog Check Requirements Take a Backup of Your Database Disable Plugins Ready to Update Now that…






