Make Post Titles Non Clickable Inside The Posts
As you might have noticed that the Title Links of the posts on my blog are not clickable when you open any post. This is done so that we don’t violate the TOS of google adsense, if you planning to place ads under the Title Text. This tutorial will teach you how to achieve it in minimal steps. I assume that you know the basics of editing the theme and templates.
01. In your WordPress Admin Dashboard, in left hand side, click on Appearance -> Editor 02. Now Click on Single.php from your right hand sidebar Theme Files. 03. Search for: And Replace It with:
All done. Now when you open any post, the Post Title Text will not be clickable. Note: The Headings i.e. <H2> as here, can be different with different themes, but most themes use H2 as Post Title Heading. Just find and replace accordingly.
01. Go to Layout -> Edit HTML and click on Expand Widget Templates 02. Now look for something similar to this code in your template:
And Replace It with:
All done. Now when you open any post, the Post Title Text will not be clickable. Note: The Headings i.e. <H2> as here, can be different with different templates, but most templates use H2 as Post Title Heading. Just find and replace accordingly. Hope this helps.
How To Add A ReTweet (Retwiit) Button In Your Blog
List Of Ping Services
How To Add Favicon To BlogFor WordPress Users:


For Blogger Users:

<h2 class=’post-title entry-title’>
<b:if cond=’data:post.link’>
<a expr:href=’data:post.link’><data:post.title/></a>
<b:else/>
<b:if cond=’data:post.url’>
<a expr:href=’data:post.url’><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h2>
</b:if>
<h2 class=’post-title entry-title’>
<a expr:href=’data:post.url’><data:post.title/></a>
</h2>
<b:else/>
<h2 class=’post-title entry-title’>
<data:post.title/>
</h2>
</b:if>
hey that really helped me… i newer knew that its against TOS of adsense.. hwever i made the change..