get_template_directory_uri() .'/scripts/images/header.jpg', 'width' => 1920, 'height' => 600, 'uploads' => true, 'default-text-color' => "515151", 'wp-head-callback' => 'bodyfit_header_style', ); add_theme_support( 'custom-header', $defaults ); // Menus register_nav_menus(array( 'primary' => esc_html__('Primary Menu', 'bodyfit'), )); // add excerpt support for pages add_post_type_support( 'page', 'excerpt' ); if ( is_singular() && comments_open() ) { wp_enqueue_script( 'comment-reply' ); } // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); // Custom Backgrounds add_theme_support( 'custom-background', array( 'default-color' => 'ffffff', ) ); // To use additional css add_editor_style( 'scripts/css/editor-style.css' ); } add_action( 'after_setup_theme', 'bodyfit_theme_setup' ); } function bodyfit_header_style() { $bodyfit_header_text_color = get_header_textcolor(); ?> (', ' ', $links); $links = str_replace(')', '', $links); return $links; } add_filter('wp_list_categories', 'bodyfit_cat_count_span'); function bodyfit_style_the_archive_count($links) { $links = str_replace(' (', ' ', $links); $links = str_replace(')', '', $links); return $links; } add_filter('get_archives_link', 'bodyfit_style_the_archive_count'); //post excerpt function bodyfit_theme_excerpt_global_length( $length ) { return 30; } function bodyfit_theme_excerpt(){ add_filter( 'excerpt_length', 'bodyfit_theme_excerpt_global_length', 999 ); echo get_the_excerpt(); } function new_excerpt_more( $more ) { return '...'; } add_filter('excerpt_more', 'new_excerpt_more'); /** * Register sidebars for bodyfit */ function bodyfit_sidebars() { // Blog Sidebar register_sidebar(array( 'name' => esc_html__( 'Blog Sidebar', "bodyfit"), 'id' => 'blog-sidebar', 'description' => esc_html__( 'Sidebar on the blog layout.', "bodyfit"), 'before_widget' => '
', 'before_title' => '