You appear to be a bot. Output may be restricted
Description
Add a pingback url auto-discovery header for singularly identifiable articles.
Usage
twentyseventeen_pingback_header();
Parameters
Returns
void
Source
File name: twentyseventeen/functions.php
Lines:
1 to 5 of 5
function twentyseventeen_pingback_header() { if ( is_singular() && pings_open() ) { printf( '<link rel="pingback" href="%s">' . "\n", esc_url( get_bloginfo( 'pingback_url' ) ) ); } }