File: /var/www/www-root/data/www/beartz.com/wp-content/themes/blogboost/inc/template-functions.php
<?php
/**
* Functions which enhance the theme by hooking into WordPress
*
* @package Blogboost
*/
/**
* Add a pingback url auto-discovery header for single posts, pages, or attachments.
*/
function blogboost_pingback_header() {
if ( is_singular() && pings_open() ) {
printf( '<link rel="pingback" href="%s">', esc_url( get_bloginfo( 'pingback_url' ) ) );
}
}
add_action( 'wp_head', 'blogboost_pingback_header' );