From 8e1367bce304a459da5e3b47eb2d990d7f2f4200 Mon Sep 17 00:00:00 2001 From: Bjorn Date: Tue, 18 Oct 2016 17:48:16 -0500 Subject: [PATCH] _s_pingback_header should use get_bloginfo instead of bloginfo because echo is already being used to output the link tag (entire line) --- inc/extras.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/extras.php b/inc/extras.php index 8475ff8..c7a2cfb 100644 --- a/inc/extras.php +++ b/inc/extras.php @@ -33,7 +33,7 @@ add_filter( 'body_class', '_s_body_classes' ); */ function _s_pingback_header() { if ( is_singular() && pings_open() ) { - echo ''; + echo ''; } } add_action( 'wp_head', '_s_pingback_header' );