what is the purpose of link rel="pingback"?

What is the purpose of <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> ? It appears in the default wordpress 2014 theme but pingbacks work without it .


Pingback URLs may be exposed via HTTP headers, so removing them from the HTML while the HTTP headers are intact is fine.

Having them at both places would help clients that only support one way of discovering pingback URLs, but most implement both. Using headers is even better because clients can do HTTP HEAD requests to discover them and do not have to fetch and parse the whole HTML.

链接地址: http://www.djcxy.com/p/77494.html

上一篇: 特定Android活动的屏幕超时时间更长?

下一篇: link rel =“pingback”的目的是什么?