For Blogger Blog:
01. Go to Layout -> Edit HTML and click on Expand Widget Templates
02. Now look for something similar to this code in your template:
<b:if cond='data:post.title'>
<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>
03. And Replace It with:
<b:if cond='data:blog.pageType != "item"'>05. Now Save it and See how it work.
<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>
For Wordpress User :
01. In your Wordpress Admin Dashboard, in left hand side, click on Appearance -> Editor02. Now Click on Single.php from your right hand sidebar Theme Files.
03. Search for:
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
And Replace It with:
<h2><?php the_title(); ?></h2>Save it. Now when you will post a new post. It will be unclickable.
0 comments:
Post a Comment