Fix space usage

This commit is contained in:
IanDelMar 2018-11-19 00:24:26 +01:00
parent 76a5c0fd36
commit eff5910640
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ if ( ! defined( 'ABSPATH' ) ) {
*/
add_action( 'after_setup_theme', 'understrap_wpcom_setup' );
if ( ! function_exists ( 'understrap_wpcom_setup' ) ) {
if ( ! function_exists( 'understrap_wpcom_setup' ) ) {
function understrap_wpcom_setup() {
global $themecolors;
@ -44,7 +44,7 @@ if ( ! function_exists ( 'understrap_wpcom_setup' ) ) {
*/
add_action( 'wp_enqueue_scripts', 'understrap_wpcom_styles' );
if ( ! function_exists ( 'understrap_wpcom_styles' ) ) {
if ( ! function_exists( 'understrap_wpcom_styles' ) ) {
function understrap_wpcom_styles() {
wp_enqueue_style( 'understrap-wpcom', get_template_directory_uri() . '/inc/style-wpcom.css', array(), '20160411' );
}