__( 'Main Menu', 'bsun4' ) ) ); } add_action( 'init', 'register_BSun4_menus' ); /* Automatic Feed Links Support */ add_theme_support( 'automatic-feed-links' ); /* Bootstrap Nav Walker */ function register_navwalker(){ require_once get_template_directory() . '/include/class-wp-bootstrap-navwalker.php'; } add_action( 'after_setup_theme', 'register_navwalker' ); /* Thumbnail Support and Sizes */ add_theme_support( 'post-thumbnails' ); function BSun4ThumbnailSizes() { add_image_size( 'slider', 1920,1080,true ); add_image_size( 'archive', 750, 300, true ); // (cropped) } add_action( 'after_setup_theme', 'BSun4ThumbnailSizes' ); /* Sidebar Register */ function Bsun4SidebarRegister() { register_sidebar( array( 'id' => 'primary', 'name' => __( 'Primary Sidebar', 'bsun4' ), 'description' => __( 'Right sidebar.', 'bsun4' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '
', 'after_title' => '
', ) ); } add_action( 'widgets_init', 'Bsun4SidebarRegister' ); /* Content Width */ if ( ! isset( $content_width ) ) $content_width = 900; /* Body Open */ if ( ! function_exists( 'wp_body_open' ) ) { function wp_body_open() { do_action( 'wp_body_open' ); } }