There are times when after making a post live we realize it needs something to be changed or modified correctly. You go back to admin panel and change it but the post is already published in your RSS feeds. But with this simple trick you can delay the time after which the post becomes live on RSS feeds also so that you get sufficient time to double check your post.Procedure:Note: Do take backup of your theme before you try this.01. In your WordPress Admin panel go to Appearance => Editor.
Articles similar to Control When Your Posts are Available Via RSS:
Display Ads in WordPress Only After First Post
If you ever tried to insert a piece of code or advertisement code in WordPress loop, you must have realized it would have shown after every post. With this simple hack you can show your ad code, whether it be Google Adsense or any other code, to show only after first post.Procedure:Note: Do take backup of your theme before you try this.01. In your WordPress Admin panel go to Appearance => Editor. 02. Then choose header.php file from right hand side and add search for this code:<?php endwhile; ?>And add below code (replaced with your ad code) immediately before above code:Change Default Gravatar to Your Choice in WordPress
To brand your blog, you need to take care of all minute things including Default Gravatar (Mystery Man), which is annoying to most readers. This simple tutorial will help you change your Default Gravatar shown on your blog to a custom image.Procedure:Note: Do take backup of your theme before you try this.01. Upload a 48 x 48px image to your theme directory.02. In your WordPress Admin panel go to Appearance => Editor. 02. Then choose functions.php file from right hand side and add below code: add_filter( 'avatar_defaults', 'newgravatar' );Change Admin Logo in WordPress Admin Panel
Ever wanted to change look and feel of your WordPress Admin panel? Here is one trick which you would definitely want, this will help you change the default Administrator logo in your WordPress admin panel.Procedure:Note: Do take backup of your theme before you try this.01. Just Add below code in your functions.php file:How To Display Feedburner Subscriber Count As Text Instead Of Chicklet
If you are a Feedburner user and don’t like chicklet to display your Feedburner count, this hack might be of your interest. With this simple hack you can display your Feedburner feed count as Text. Hope you like it.Procedure:Note: Do take backup of your theme before you try this.01. In your WordPress Admin panel go to Appearance => Editor. 02. Then choose a file, say sidebar.php from right hand side and add below code in it://get cool feedburner count $whaturl="http://api.feedburner.com/awareness/1.0/GetFeedData?uri=feedburner-id";//Initialize the Curl session $ch = curl_init();How to Display Random Header Images
If you got a huge header, you can try to show to different images each time a user loads your site. You can rotate as many images as you want. But here for example we are giving you a example of three images. Hope this helps some.One Step Procedure:Note: Do take backup of your theme before you try this.01. First rename your images with a underscore like these:- randomimage_1.gif - randomimage_2.gif - randomimage_3.gif02. Add this below code in your header.php file or the file where the code for your header image is placed:How to Exclude Categories from Your RSS Feed
There may be times when you want something to be published on your blog but not on your RSS feed, may be that is some sort of news section or anything. This hack helps you get the power to exclude certain category from your RSS feed, so whenever you publish a new post, it won’t be shown in your RSS feed. This might help some.Procedure:Note: Do take backup of your theme before you try this.01. In order to continue with this tutorial, you have to go through previous tutorial: How To Find Post IDs in WordPressNow just like posts ID’s, go your wordpress dashboard and open Category section. Just hover your mouse and get the number after cat_ID=. We will need it later.How To Add Author Info On Their Blog Posts
The Best way to call guest authors on your blog is by displaying author bio on their posts so that it can help them to spread the word around about themselves. For multi-author blog, I would say, this is a must thing to implement. Putting author’s description at the end of the post helps the readers to know about the writer of that article without having to visit about page.Procedure:Note: Do take backup of your theme before you try this.01. Open your stylesheet and add this code to it:
