tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /** * Enable support for Post Thumbnails on posts and pages * */ if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 150, 150, true ); // default Post Thumbnail dimensions, cropped // additional image sizes add_image_size( 'beam-big-thumbnail', 600, 220); //500 pixels wide and unlimited height, cropped add_image_size( 'beam-small-thumbnail', 300, 9999, true); //500 pixels wide and unlimited height, cropped add_image_size( 'beam-thumb-large', 720, 340 ); // Soft proprtional crop to max 720px width, max 340px height } /** * This theme uses wp_nav_menu() in two locations. */ register_nav_menus( array( 'primary' => __( 'Primary Menu', 'beam' ), 'footer' => __( 'Footer Menu', 'beam' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See https://developer.wordpress.org/themes/functionality/post-formats/ */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', ) ); // Enable support for Custom Logo add_theme_support('custom-logo'); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'beam_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); } endif; // beam_setup add_action( 'after_setup_theme', 'beam_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function beam_content_width() { $GLOBALS['content_width'] = apply_filters( 'beam_content_width', 1170 ); } add_action( 'after_setup_theme', 'beam_content_width', 0 ); /** * Register widgetized area and update sidebar with default widgets */ function beam_widgets_init() { register_sidebar( array( 'name' => __( 'Sidebar Right', 'beam' ), 'id' => 'sidebar-1', 'before_widget' => '', 'before_title' => '', 'after_title' => '', ) ); register_sidebar( array( 'name' => __( 'Sidebar Left', 'beam' ), 'id' => 'sidebar-2', 'before_widget' => '', 'before_title' => '', 'after_title' => '', ) ); register_sidebar( array( 'name' => __( 'Sidebar Home', 'beam' ), 'id' => 'sidebar-3', 'before_widget' => '', 'before_title' => '', 'after_title' => '', ) ); register_sidebar( array( 'name' => __( 'Footer Widget', 'beam' ), 'id' => 'sidebar-4', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'beam_widgets_init' ); /** * Enqueue jquery needed for Mobile Menu */ function beam_insert_jquery(){ wp_enqueue_script('jquery', false, array(), false, false); } add_filter('wp_enqueue_scripts','beam_insert_jquery',1); /** * Enqueue scripts and styles */ function beam_scripts() { wp_enqueue_script( 'beam-navigation', get_template_directory_uri() . '/js/navigation.js', array(), '20120206', true ); wp_enqueue_script( 'beam-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20130115', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } if ( is_singular() && wp_attachment_is_image() ) { wp_enqueue_script( 'beam-keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20120202' ); } } add_action( 'wp_enqueue_scripts', 'beam_scripts' ); function beam_styles() { wp_enqueue_style( 'style', get_stylesheet_uri() ); wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/inc/fonts/css/font-awesome.min.css' ); } add_action( 'wp_enqueue_scripts', 'beam_styles' ); /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; /** * Add Kirki */ include_once( dirname( __FILE__ ) . '/inc/adm/kirki/kirki.php' ); /** * Load content-one content * Used in Include One template */ function beam_load_content_one($path) { $post = get_page_by_path($path); $content = apply_filters('the_content', $post->post_content); echo $content; } /** * Change the URL that will be used by Kirki * to load its assets in the customizer. */ function beam_kirki_update_url( $config ) { $config['url_path'] = get_template_directory_uri() . '/inc/adm/kirki/'; return $config; add_action( 'wp_enqueue_scripts', function() { remove_action( 'wp_enqueue_scripts', array( Kirki()->styles['front'], 'enqueue_styles' ) ); }, 999 ); } add_filter( 'kirki/config', 'beam_kirki_update_url' );