admin管理员组文章数量:1317906
Maybe this is a silly question, I actually want to know what is this URL? It's present in my website.
<link rel="pingback" href=".php" />
My questions are:
- What is the use of this?
- Can this link cause any problems?
Maybe this is a silly question, I actually want to know what is this URL? It's present in my website.
<link rel="pingback" href="http://www.example/xmlrpc.php" />
My questions are:
- What is the use of this?
- Can this link cause any problems?
1 Answer
Reset to default 18It's "Pingback"
What is Pingback?
Pingbacks (also known as trackbacks) are a form of automated comment for a page or post, created when another WordPress blog links to that page or post.
When you publish a new blog post, WordPress attempts to ‘ping‘ all the sites that were linked to in your post. i.e. Your WordPress website is informing other websites that you’ve linked to them.
When you receive pingpacks, then it means someone else has linked to one of your posts or pages. (:source^) (also learn more: WordPress Support, Wikipedia, and the Codex glossary)
And a more details about Pingback and Trackback, look here:
Codex: Pingbacks
Removing Pingback
To get rid of the pingback URL, just delete the line from your header.php
:
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
The following article may help you understand, why:
Minimizing HTTP Requests with WordPress Themes - ClickNathan
Answers
Now come to your questions:
- What is the use of this?
Answer: If you read all the resources, you now understand what's the use of it.
- Does this link makes any problems?
Answer: No, it's just make a new query to the database, if the pingback URL is not defined directly. If defined programmatically then it just query the database once every page load and retrieve the pingback URL from db. It's not good for a healthy site to ping database for less important things. And if you read the links, pingback is not important.
But till we can seek:
- Trackbacks and Pingbacks: Positive (+)
- Trackbacks and Pingbacks: Negative (-)
本文标签: What is relquotpingbackquotand what is the use of this in my website
版权声明:本文标题:What is rel="pingback", and what is the use of this in my website? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742029924a2416252.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论