Home  >  Article  >  CMS Tutorial  >  How to use wordpress anti-collection plug-in

How to use wordpress anti-collection plug-in

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-07-12 16:24:463856browse

The AntiLeech plug-in is powerful. It can determine whether it is a web crawler through the User-Agent string or IP address. When banned crawlers and banned User-Agent strings or IP addresses want to plagiarize your content, AntiLeech Will give them some fake content.

How to use wordpress anti-collection plug-in

Specific method:

1. In the WordPress panel, select Settings - Reading Settings, Select Summary and click Save Changes (for the Chinese version of WordPress, you can refer to the corresponding location):

2. Add the "Read Full Text" link to the feed and find the functions in your template file .php, add the following code between 815b22acdbf9dab14aa760b8cd72f36d:

/* RSS 中添加查看全文链接 @44ux.com */
function feed_read_more($content) {
    return $content . '

阅读全文

'; } add_filter ('the_excerpt_rss', 'feed_read_more');

After saving, upload it to the server and overwrite the original file, so that the "read full text" link will be displayed in the feed . In fact, you can add a lot of information to the feed in this way, and you can even put Google Adsense ads in it, but be careful, this may cause resentment among subscribers.

Related recommendations: "WordPress Tutorial"
3. You can also add copyright information to the feed to make your copyright more prominent. Also in functions.php, add the following code (change the copyright information to your own):

/* RSS 中添加版权信息 @44ux.com */
function feed_copyright($content) {
     if(is_single() or is_feed()) {
          $content.= "

"; $content.= '版权所有:Hi,laser! @44ux. com 《' .get_the_title().'》
'; $content.= '本文链接:' .get_permalink().'
'; $content.= '特别声明:除特别标注,本站文章均为原创,遵循CC BY-NC 3.0,转载请注明出处'; $content.= "


"; } return $content; } //add_filter ('the_content', 'feed_copyright'); //此句可像文章内容中添加版权 add_filter ('the_excerpt_rss', 'feed_copyright');

In addition, by the way, there are some methods to prevent collection, each with its own pros and cons. Here is a brief list:

1. Limit the number of visits per unit time of an IP address

2. Block ip

3. Use js to encrypt web content

4. The website copyright or some random junk text is hidden in the web page. These text styles are written in css

5. Users can log in to access the website content

6. Use scripting language to do paging (hidden paging) )

7. Anti-hotlinking measures (only allowed to be viewed through this website page connection, such as: Request.ServerVariables("HTTP_REFERER")

8. Full flash, pictures or pdf to present website content

9. The website randomly uses different templates

10. Uses dynamic and irregular html tags

The above is the detailed content of How to use wordpress anti-collection plug-in. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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