Fix space usage

This commit is contained in:
IanDelMar 2018-11-19 00:27:49 +01:00
parent 9c8be5118d
commit 024ddea2ab
1 changed files with 2 additions and 3 deletions

View File

@ -3,14 +3,13 @@
* Check and setup theme's default settings
*
* @package understrap
*
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
if ( ! function_exists ( 'understrap_setup_theme_default_settings' ) ) {
if ( ! function_exists( 'understrap_setup_theme_default_settings' ) ) {
function understrap_setup_theme_default_settings() {
// check if settings are set, if not set defaults.
@ -33,4 +32,4 @@ if ( ! function_exists ( 'understrap_setup_theme_default_settings' ) ) {
set_theme_mod( 'understrap_container_type', 'container' );
}
}
}
}