'',
    'default-image'          => '',
    'default-repeat'         => '',
    'default-position-x'     => '',
    'default-attachment'     => '',
    'wp-head-callback'       => '_custom_background_cb',
    'admin-head-callback'    => '',
    'admin-preview-callback' => ''
	));
	add_image_size( 'inside-tours-featured-image', 2000, 1200, true );
	add_image_size( 'inside-tours-thumbnail-avatar', 100, 100, true );
	$GLOBALS['content_width'] = 525;
	
	register_nav_menus( array(
		'primary' => __( 'Primary Menu', 'inside-tours' ),
	) );
	add_theme_support( 'html5', array(
		'comment-form',
		'comment-list',
		'gallery',
		'caption',
	) );
	// Add theme support for Custom Logo.
	add_theme_support( 'custom-logo', array(
		'width'       => 250,
		'height'      => 250,
		'flex-width'  => true,
	) );
	// Add theme support for selective refresh for widgets.
	add_theme_support( 'customize-selective-refresh-widgets' );
	/*
	 * This theme styles the visual editor to resemble the theme style,
	 * specifically font, colors, and column width.
 	 */
	add_editor_style( array( 'assets/css/editor-style.css', inside_tours_fonts_url() ) );
	// Theme Activation Notice
	global $pagenow;
		if ( is_admin() && ('themes.php' == $pagenow) && isset( $_GET['activated'] ) ) {
		add_action( 'admin_notices', 'inside_tours_activation_notice' );
	}
}
add_action( 'after_setup_theme', 'inside_tours_setup' );
// Notice after Theme Activation
function inside_tours_activation_notice() {
	echo '
';
		echo '
'. esc_html__( 'Welcome to Luzuk!!', 'inside-tours' ) .'
';
		echo '
'. esc_html__( 'Thank you for choosing Inside Tours theme. It will be our pleasure to have you on our Welcome page to serve you better.', 'inside-tours' ) .'
';
		echo '
'. esc_html__( 'GET STARTED', 'inside-tours' ) .'
';
	echo '