افزودن لینک منبع نوشته هنگام کپی کردن در سایت دیگر
گاهی اوقات برای نوشتن یک مقاله در سایت زمان زیادی را تلف میکنیم و شخصی به راحتی و بدون زحمت آن را کپی میکند و تلاش ما بی فایده میشود . امروز قصد داریم به شما آموزش دهیم که هر گاه شخصی ، مطلبی از سایت وردپرس شما را کپی کرد ، در انتها مطلب یک لینک با عنوان مطلب در سایتش درج شود که باعث گرفتن بک لینک میشود
برای افزودن لینک منبع نوشته کافیست کد زیر را در footer.php سایت خود قرار دهید
<script type="text/javascript"> function addLink() { //Get the selected text and append the extra info var selection = window.getSelection(), pagelink = '<br /><br /> منبع: ' + document.location.href, copytext = selection + pagelink, newdiv = document.createElement('div'); //hide the newly created container newdiv.style.position = 'absolute'; newdiv.style.left = '-۹۹۹۹۹px'; //insert the container, fill it with the extended text, and define the new selection document.body.appendChild(newdiv); newdiv.innerHTML = copytext; selection.selectAllChildren(newdiv); window.setTimeout(function () { document.body.removeChild(newdiv); }, ۱۰۰); } document.addEventListener('copy', addLink); </script>