In the last few weeks i have noticed that famous Websites (such as Droidadda, Techcrunch, Huffington Post) now have a “read more” link on any text that is copied and pasted from their site. This can be a good way to get new visitors to your site as many people will copy and paste text from websites into an email. People also often save information for future reference, or just share it with friends, family or colleagues. There are a few ways to do this, and in this article we are going to show you how.
1. Tynt
Tynt is a hosted solution which requires you to sign up and Tynt will create a code to insert onto your website. It is also available in a WordPress plugin: Tynt WP Plugin. Tynt also offer analytics on users coming to your site via these pasted links.
Although this service does appear to work well and is easy to setup, we do not really recommend this method based on the comments on this page.
2. Javascript
For Bloggers
123456789101112131415161718192021222324252627
<script type="text/javascript">// <![CDATA[
function addLink() {
if (
window.getSelection().containsNode(
document.getElementsByClassName('entry-content')[0], true)) {
var body_element = document.getElementsByTagName('body')[0];
var selection;
selection = window.getSelection();
var oldselection = selection
var url = document.URL
var pagelink = "
Read more at The Web Taylor: PAGE TITLE HERE <a href='" + url + "'>" + url + "</a>"; // Change this to suit
var copy_text = selection + pagelink;
var new_div = document.createElement('div');
new_div.style.left='-99999px';
new_div.style.position='absolute';
body_element.appendChild(new_div );
new_div.innerHTML = copy_text ;
selection.selectAllChildren(new_div );
window.setTimeout(function() {
body_element.removeChild(new_div );
},0);
}}
document.oncopy = addLink;
// ]]></script>
For Wordpress Users
123456789101112131415161718192021222324252627282930
function add_copyright_text() {
if (is_single()) { ?>
}}
add_action( 'wp_head', 'add_copyright_text');
- You can also use the new Wordpress Read More Plugin instead of using the above code.
Final Words
This article has been written for the seek of those users who spent hours on writing a blog post and the copy cats stole their work in minutes by just copying the whole post. Now fell free youl post will be copied along with your post like. If the copy user removes your blog post link the copy contents won't appear on his blog 😉
not able to copy code
ReplyDeletenot able to copy code
ReplyDelete