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. * * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'darklowpress' ), 'secondary' => esc_html__( 'Footer Menu', 'darklowpress' ), ) ); /* * 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 http://codex.wordpress.org/Post_Formats */ // add_theme_support( 'post-formats', array( // 'aside', // 'image', // 'video', // 'quote', // 'link', // ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'darklowpress_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); add_theme_support( "custom-header", array( 'default-color' => 'ffffff', 'default-image' => '', ) ); add_theme_support( 'custom-logo', array( 'height' => 70, 'width' => 250, 'flex-height' => true, 'flex-width' => true, ) ); add_editor_style() ; } endif; // darklowpress_setup add_action( 'after_setup_theme', 'darklowpress_setup' ); /** * Enqueue scripts and styles. */ function darklowpress_scripts() { wp_enqueue_style( 'darklowpress-bootstrap', get_template_directory_uri().'/css/bootstrap.min.css' ); wp_enqueue_style( 'darklowpress-fontawesome', get_template_directory_uri().'/css/font-awesome.min.css' ); wp_enqueue_style( 'darklowpress-style', get_stylesheet_uri() ); wp_enqueue_script('jquery'); wp_enqueue_script( 'darklowpress-bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js', array(), '1.0.0', true ); wp_enqueue_script( 'darklowpress-scripts', get_template_directory_uri() . '/js/script.js', array(), '1.0.0', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'darklowpress_scripts' ); /** * 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 */ if ( ! isset( $content_width ) ) $content_width = 900; function darklowpress_content_width() { $GLOBALS['content_width'] = apply_filters( 'darklowpress_content_width', 640 ); } add_action( 'after_setup_theme', 'darklowpress_content_width', 0 ); function darklowpress_filter_front_page_template( $template ) { return is_home() ? '' : $template; } add_filter( 'front_page_template', 'darklowpress_filter_front_page_template' ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function darklowpress_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'darklowpress' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'darklowpress_widgets_init' ); if ( ! function_exists( 'darklowpress_pagination_bars' ) ) : /** * Display navigation to next/previous set of posts when applicable. */ function darklowpress_pagination_bars() { // Don't print empty markup if there's only one page. if ( $GLOBALS['wp_query']->max_num_pages < 1 ) { return; } $paged = get_query_var( 'paged' ) ? intval( get_query_var( 'paged' ) ) : 1; $pagenum_link = html_entity_decode( get_pagenum_link() ); $query_args = array(); $url_parts = explode( '?', $pagenum_link ); if ( isset( $url_parts[1] ) ) { wp_parse_str( $url_parts[1], $query_args ); } $pagenum_link = remove_query_arg( array_keys( $query_args ), $pagenum_link ); $pagenum_link = trailingslashit( $pagenum_link ) . '%_%'; $format = $GLOBALS['wp_rewrite']->using_index_permalinks() && ! strpos( $pagenum_link, 'index.php' ) ? 'index.php/' : ''; $format .= $GLOBALS['wp_rewrite']->using_permalinks() ? user_trailingslashit( 'page/%#%', 'paged' ) : '?paged=%#%'; // Set up paginated links. $links = paginate_links( array( 'base' => $pagenum_link, 'format' => $format, 'total' => $GLOBALS['wp_query']->max_num_pages, 'current' => $paged, 'mid_size' => 2, 'add_args' => array_map( 'urlencode', $query_args ), 'prev_text' => __( '', 'darklowpress' ), 'next_text' => __( '', 'darklowpress' ), 'type' => 'list', ) ); if ( $links ) : ?>