Home> CMS Tutorial> WordPress> body text

How to share selected content to Sina Weibo in Wordpress

藏色散人
Release: 2020-01-07 10:10:48
Original
2491 people have browsed it

How to share selected content to Sina Weibo in Wordpress

How to share selected content to Sina Weibo in Wordpress?

The example in this article describes how WordPress shares selected content to Sina Tencent Weibo. Share it with everyone for your reference. The specific method is as follows:

Recommended: "wordpress tutorial"

1. Introduce jQuery. I believe that most WordPress blogs have already introduced jQuery. Then you can proceed directly to the second step.

2. At the bottom of the page, or more precisely, add this piece of JS after introducing the jQuery library, you can see the same as this site It works.

The function of selecting and sharing looks relatively advanced. In fact, the implementation is quite simple. Some of the principles are confusing and not interesting to most people. I will just skip it here. After selecting this js text I have simply encapsulated the function of sharing to Sina Weibo. The method name is: $sinaMiniBlogShare

The example code is as follows:

The code is as follows:

var miniBlogShare = function() { //指定位置驻入节点 $('').appendTo('body'); //默认样式 $('.img_share').css({ display : 'none', position : 'absolute', cursor : 'pointer' }); //选中文字 var funGetSelectTxt = function() { var txt = ''; if(document.selection) { txt = document.selection.createRange().text; } else { txt = document.getSelection(); } return txt.toString(); }; //选中文字后显示微博图标 $('html,body').mouseup(function(e) { if (e.target.id == 'imgSinaShare' || e.target.id == 'imgQqShare') { return } e = e || window.event; var txt = funGetSelectTxt(), sh = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0, left = (e.clientX - 40 < 0) ? e.clientX + 20 : e.clientX - 40, top = (e.clientY - 40 < 0) ? e.clientY + sh + 20 : e.clientY + sh - 40; if (txt) { $('#imgSinaShare').css({ display : 'inline', left : left, top : top }); $('#imgQqShare').css({ display : 'inline', left : left + 30, top : top }); } else { $('#imgSinaShare').css('display', 'none'); $('#imgQqShare').css('display', 'none'); } }); //点击新浪微博 $('#imgSinaShare').click(function() { var txt = funGetSelectTxt(), title = $('title').html(); if (txt) { window.open('http://v.t.sina.com.cn/share/share.php?title=' + txt + ' —— 转载自:' + title + '&url=' + window.location.href); } }); //点击腾讯微博 $('#imgQqShare').click(function() { var txt = funGetSelectTxt(), title = $('title').html(); if (txt) { window.open('http://v.t.qq.com/share/share.php?title=' + encodeURIComponent(txt + ' —— 转载自:' + title) + '&url=' + window.location.href); } }); }();
Copy after login

You can see $ The sinaMiniBlogShare method has two parameters, eleShare and eleContainer. The former parameter is required and refers to the floating layer element that appears after the text is selected (in the demo of this article, it is the Sina eye icon). The latter parameter refers to the container for text selection. Element, optional parameter, if not set, it refers to the document element, that is, the selection of the entire page text will trigger the sharing function.

Assume that the HTML of the Sina Weibo sharing icon is as follows:

The code is as follows :

Copy after login

Then use the following code directly:

The code is as follows:

$sinaMiniBlogShare(document.getElementById("imgSinaShare"));
Copy after login

I hope this article will be helpful to everyone in building a WordPress website.

The above is the detailed content of How to share selected content to Sina Weibo in Wordpress. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!