27 lines
861 B
PHP
27 lines
861 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Check and setup theme's default settings
|
||
|
*/
|
||
|
function setup_theme_default_settings() {
|
||
|
|
||
|
// check if settings are set, if not set defaults.
|
||
|
// Caution: DO NOT check existence using === always check with == .
|
||
|
// Latest blog posts style.
|
||
|
$understrap_posts_index_style = get_theme_mod( 'understrap_posts_index_style' );
|
||
|
if ( '' == $understrap_posts_index_style ) {
|
||
|
set_theme_mod( 'understrap_posts_index_style', 'default' );
|
||
|
}
|
||
|
|
||
|
// Sidebar position.
|
||
|
$understrap_sidebar_position = get_theme_mod( 'understrap_sidebar_position' );
|
||
|
if ( '' == $understrap_sidebar_position ) {
|
||
|
set_theme_mod( 'understrap_sidebar_position', 'right' );
|
||
|
}
|
||
|
|
||
|
// Container width.
|
||
|
$understrap_container_type = get_theme_mod( 'understrap_container_type' );
|
||
|
if ( '' == $understrap_container_type ) {
|
||
|
set_theme_mod( 'understrap_container_type', 'container' );
|
||
|
}
|
||
|
}
|