'; } } add_action('wp_head', 'awesomepress_pingback_header'); endif; /** * Excerpt More */ if (! function_exists('awesomepress_excerpt_more') ) : /** * Add a pingback url auto-discovery header for singularly identifiable articles. */ function awesomepress_excerpt_more() { $link = sprintf( '%2$s', esc_url( get_permalink( get_the_ID() ) ), /* translators: %s: Name of current post */ sprintf( __( 'Continue reading %s', 'awesomepress' ), '' . get_the_title( get_the_ID() ) . '' ) ); return $link; } add_action('excerpt_more', 'awesomepress_excerpt_more'); endif;