forked from mirror/_s
Merge pull request #1111 from grappler/feature/1064-extras
Replace extras.php with template-functions.php to make the file name more useful Fixes #1064
This commit is contained in:
commit
bfa0b9a024
|
@ -117,6 +117,16 @@ function _s_scripts() {
|
||||||
}
|
}
|
||||||
add_action( 'wp_enqueue_scripts', '_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.
|
* Implement the Custom Header feature.
|
||||||
*/
|
*/
|
||||||
|
@ -128,9 +138,9 @@ require get_template_directory() . '/inc/custom-header.php';
|
||||||
require get_template_directory() . '/inc/template-tags.php';
|
require get_template_directory() . '/inc/template-tags.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Custom functions that act independently of the theme templates.
|
* Additional features to allow styling of the templates.
|
||||||
*/
|
*/
|
||||||
require get_template_directory() . '/inc/extras.php';
|
require get_template_directory() . '/inc/template-functions.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Customizer additions.
|
* Customizer additions.
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Custom functions that act independently of the theme templates
|
* Additional features to allow styling of the templates
|
||||||
*
|
|
||||||
* Eventually, some of the functionality here could be replaced by core features.
|
|
||||||
*
|
*
|
||||||
* @package _s
|
* @package _s
|
||||||
*/
|
*/
|
||||||
|
@ -27,13 +25,3 @@ function _s_body_classes( $classes ) {
|
||||||
return $classes;
|
return $classes;
|
||||||
}
|
}
|
||||||
add_filter( 'body_class', '_s_body_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' );
|
|
Reference in New Issue