'eeeeee', )); /* ======================================================================================================================== Enable and activate register_nav_menus(array()); for Camaraderie WordPress theme. This feature when enabled, you can create a Primary Navigation, Secondary Navigation, and Social Navigation menus in the dashboard under menus. ======================================================================================================================== */ register_nav_menus(array( 'primary' => esc_html__('Primary Navigation', 'camaraderie'), 'secondary' => esc_html__('Secondary Navigation', 'camaraderie'), 'social' => esc_html__('Social Navigation', 'camaraderie') )); /* ======================================================================================================================== Enable and activate add_theme_support('post-thumbnails'); for Camaraderie WordPress theme. This feature when enabled allows you to set post thumbnails (Featured Images) for the theme. If you wish to display post thumbnails, use the following to display the_post_thumbnail();. If you wish to check if there's a post, then use has_post_thumbnail. ======================================================================================================================== */ add_theme_support('post-thumbnails'); /* ======================================================================================================================== add_image_size('camaraderie-small-thumbnail', 300, 300, true); should be used under the following files, content.php ======================================================================================================================== */ add_image_size('camaraderie-small-thumbnails', 300, 300, true); /* ======================================================================================================================== add_image_size('camaraderie-medium-thumbnail', 828, 414, true); should be used under the following files, content.php ======================================================================================================================== */ add_image_size('camaraderie-medium-thumbnails', 828, 414, true); /* ======================================================================================================================== add_image_size('camaraderie-large-thumbnail', 834, 300, true); should be used under the following files, content.php ======================================================================================================================== */ add_image_size('camaraderie-large-thumbnails', 1170, 585, true); /* ======================================================================================================================== add_image_size('camaraderie-blog-thumbnail', 576, 225, true); should be used under the following files, content.php ======================================================================================================================== */ add_image_size('camaraderie-blog-thumbnails', 576, 288, true); /* ======================================================================================================================== add_image_size('camaraderie-large-thumbnails', 1200, 630, true); should be used under the following files. single-portfolio.phpi mea ======================================================================================================================== */ add_image_size('camaraderie-portfolio-thumbnails', 1200, 630, true); /* ======================================================================================================================== add_image_size('camaraderie-large-thumbnails', 1200, 630, true); should be used under the following files. single-portfolio.phpi mea ======================================================================================================================== */ add_image_size('camaraderie-portfolio-thumbnails', 1200, 630, true); /* ======================================================================================================================== add_image_size('camaraderie-large-thumbnails', 1200, 630, true); should be used under the following files. single-portfolio.phpi mea ======================================================================================================================== */ add_image_size('camaraderie-testimonial-thumbnails', 200, 200, true); /* ======================================================================================================================== Enable and activate add_theme_support('post-formats'); for Camaraderie WordPress theme. This theme only supports quotes for now. ======================================================================================================================== */ add_theme_support('post-formats', array('quote')); /* ======================================================================================================================== Enable and activate load_theme_textdomain('camaraderie'); for Camaraderie WordPress theme. This feature make this theme available for translation. ======================================================================================================================== */ load_theme_textdomain('camaraderie'); /* ======================================================================================================================== add_post_type_support('page', 'excerpt'); should be used under the pages, you will need to select Excerpt in the Screen Option to enable this feature. ======================================================================================================================== */ add_post_type_support('page', 'excerpt'); } add_action('after_setup_theme', 'camaraderie_theme_setup'); /* ============================================================================================================================ 2.0 - Theme Content Width ============================================================================================================================ */ function camaraderie_content_width_setup() { $GLOBALS['content_width'] = apply_filters('camaraderie_content_width_setup', 800); } add_action('after_setup_theme', 'camaraderie_content_width_setup', 0);