=' ) ) : add_theme_support( 'custom-header' ); define( 'NO_HEADER_TEXT', true ); endif; add_theme_support( 'custom-logo' ); add_editor_style(); add_theme_support( 'title-tag' ); add_theme_support( 'post-thumbnails' ); register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'astrology' ), 'footer' => esc_html__( 'Footer', 'astrology' ), ) ); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff', 'default-image' => '', ) ); } endif; add_action( 'after_setup_theme', 'AstrologySetup' ); function AstrologyContentWidth() { $GLOBALS['content_width'] = apply_filters( 'astrology_content_width', 640 ); } add_action( 'after_setup_theme', 'AstrologyContentWidth', 0 ); function AstrologerCustomExcerptLength( $length ) { return 34; } add_filter( 'excerpt_length', 'AstrologerCustomExcerptLength', 999 ); function AstrologerCustomExcerptLengthMore( $more ) { return ' {...}'; } add_filter( 'excerpt_more', 'AstrologerCustomExcerptLengthMore' ); /** * wp enqueue style and script. */ require_once get_template_directory() . '/inc/enqueue-file.php'; /** * widgets. */ require_once get_template_directory() . '/inc/widgets.php'; /** * customizer additions. */ require_once get_template_directory() . '/inc/customizer.php'; /** * default astrology functions. */ require_once get_template_directory() . '/inc/default.php'; require_once get_template_directory() . '/inc/breadcumbs.php';