You may have noticed how some popular websites (like eHow etc) will attach a “read more” link to any text that is copied from their site. This is a great way to get new users. Often folks are copying and pasting text from websites into email. Some use it to save the information for future, while others are just sharing it with their friends, family, and colleagues. In this article we are going to show you how you can easily add a “read more” link to any copied text from your WordPress blog, so you can get additional traffic.
Note: To see this in action, copy anything on this post and paste it in your email or notepad.
First thing you need to do is copy the following code into your theme’s functions.php file or a site-specific plugin:
function add_copyright_text() {
if (is_single()) { ?>
<script type='text/javascript'>
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 pagelink = "<br /><br /> Read more at WPBeginner: <?php the_title(); ?> <a href='<?php echo wp_get_shortlink(get_the_ID()); ?>'><?php echo wp_get_shortlink(get_the_ID()); ?></a>"; //Change this if you like
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>
<?php
}
}
add_action( 'wp_head', 'add_copyright_text');
Now, whenever someone comes to your website and tries to copy your content a read more link will be included along with it. Don’t forget to change the copyright text, and add your own site’s title there.
Edit: Initially we were grabbing the window URL, but as one of our users pointed out that it made the URLs look clunky. We have updated the code to only show it on single post pages, and use wp_shortlink. So it would use something like this: yoursite.com/?p=23. If you are using a customized shortlink like we are: wpbeg.in, then it will show the branded shortlink.







Is there an easy way to make it work on single pages, too?
Yes. Change line 2 code from:
if (is_single()) to if (is_singular())
Thank you! That works, except it doesn’t grab a link for pages…just posts.
That’s weird. get_the_id should work for both pages and posts.
I have it workign on KindredGrace . com but it doesn’t grab the id for pages, just posts.
Try adding the global variable. Because get_the_id works for posts and pages are also a “post type”
I tried it like this and still no luck on grabbing the shortlink for pages:
// Add copyright text
function add_copyright_text() {
global $post; { ?>
Great Trick. there is plugin too for this: http://wordpress.org/extend/plugins/read-more-copy-link/
Love your website! Thanks for taking the time to share with everyone.
Nice, Post but I always don’t like Codings, it confuses me!
It´s not working, even with wpbeginner.com content
We took the code off our website. Some users complained that they found it annoying.
WOW… Many Many Thanks for share it,, I am suffering for this …
Thanks again.
Does someone know how to do not show the “Read More Link” when the post title is copied?
Thanks!
Yes it is possible. Change the selector tag from body to a div ID or what not. I have put the request in. Our developers will let me know, so I can update the article.
Thanks. I’ve just tried with var div = document.getElementById(‘copyright’); in the line number 6 and adding de id=”copyright” to the div content, but I get the same result as with your code. Sorry, I am not a programmer.
Check out the code now. It should work.
Thanks, this looks interesting I’ll be trying it out soon
It also worked fine in a new email composed from Outlook, so I’d say it’s a Gmail issue. Thanks!
Just tried it with Gmail.. It works fine here.
Interesting and useful; however, I was surprised that the copy test did not work (for me at least) when composing an email in Gmail — nothing showed after pasting the copied text, and the body text area in the compose email window just froze. Testing a copied bit in Notepad worked just fine, so I don’t know what the issue might be with Gmail.
Thanks for the tip!
That is good option Syed. Thanks for sharing. But if we can able to print short URL of the post means, that is even better for website owners.
Currently it is printing long URL. If I came here by Feedburner newsletter subscription, the UTM tracking url also coming.
Hope you understand. Is it possible?
Ah hah. Good suggestion. Writing it down in the list of to-do things for WPBeginner.
Edit: Just updated the code
That is fast and smart.
One Question: Why you removed Author URL in the comment form? Always, I’m seeing, many of the WordPress powered blogs will give credit to the comment author at URL field with NoFollow attribute.
Is there any specific reason for removing Author URI field? Or are there any experiments for Penguin update?
Between, I’m not getting any comment notification, even after selecting the “Notify me of followup comments via e-mail” option.
Wow, now this is a great tip! Makes it easy to quote and show attribution as well as drops a link for those who skim and steal content. Very cool!
Thanks so much for this. It was so easy to do, and something I wondered about for quite some time. Appreciate it!