Move pingback function back to the `template-functions` file.

This commit is contained in:
jrfnl 2017-06-16 01:17:27 +02:00
parent bce3197a42
commit 7b8db5678f
2 changed files with 11 additions and 11 deletions

View File

@ -117,16 +117,6 @@ function _s_scripts() {
}
add_action( 'wp_enqueue_scripts', '_s_scripts' );
/**
* Add a pingback url auto-discovery header for singularly identifiable articles.
*/
function _s_pingback_header() {
if ( is_singular() && pings_open() ) {
echo '<link rel="pingback" href="', esc_url( get_bloginfo( 'pingback_url' ) ), '">';
}
}
add_action( 'wp_head', '_s_pingback_header' );
/**
* Implement the Custom Header feature.
*/

View File

@ -1,6 +1,6 @@
<?php
/**
* Additional features to allow styling of the templates
* Functions which enhance the theme by hooking into WordPress
*
* @package _s
*/
@ -25,3 +25,13 @@ function _s_body_classes( $classes ) {
return $classes;
}
add_filter( 'body_class', '_s_body_classes' );
/**
* Add a pingback url auto-discovery header for singularly identifiable articles.
*/
function _s_pingback_header() {
if ( is_singular() && pings_open() ) {
echo '<link rel="pingback" href="', esc_url( get_bloginfo( 'pingback_url' ) ), '">';
}
}
add_action( 'wp_head', '_s_pingback_header' );