Viewing File: /home/maglabs/mascotte/wp-content/themes/splendour/index.php

<?php
/**
 * The main template file.
 *
 * This is the most generic template file in a WordPress theme
 * and one of the two required files for a theme (the other being style.css).
 * It is used to display a page when nothing more specific matches a query.
 * E.g., it puts together the home page when no home.php file exists.
 * Learn more: //codex.wordpress.org/Template_Hierarchy
 *
 * @package SPLENDOUR
 * @since SPLENDOUR 1.0
 */

$splendour_template = apply_filters( 'splendour_filter_get_template_part', splendour_blog_archive_get_template() );

if ( ! empty( $splendour_template ) && 'index' != $splendour_template ) {

	get_template_part( $splendour_template );

} else {

	splendour_storage_set( 'blog_archive', true );

	get_header();

	if ( have_posts() ) {

		// Query params
		$splendour_stickies   = is_home()
								|| ( in_array( splendour_get_theme_option( 'post_type' ), array( '', 'post' ) )
									&& (int) splendour_get_theme_option( 'parent_cat' ) == 0
									)
										? get_option( 'sticky_posts' )
										: false;
		$splendour_post_type  = splendour_get_theme_option( 'post_type' );
		$splendour_args       = array(
								'blog_style'     => splendour_get_theme_option( 'blog_style' ),
								'post_type'      => $splendour_post_type,
								'taxonomy'       => splendour_get_post_type_taxonomy( $splendour_post_type ),
								'parent_cat'     => splendour_get_theme_option( 'parent_cat' ),
								'posts_per_page' => splendour_get_theme_option( 'posts_per_page' ),
								'sticky'         => splendour_get_theme_option( 'sticky_style' ) == 'columns'
															&& is_array( $splendour_stickies )
															&& count( $splendour_stickies ) > 0
															&& get_query_var( 'paged' ) < 1
								);

		splendour_blog_archive_start();

		do_action( 'splendour_action_blog_archive_start' );

		if ( is_author() ) {
			do_action( 'splendour_action_before_page_author' );
			get_template_part( apply_filters( 'splendour_filter_get_template_part', 'templates/author-page' ) );
			do_action( 'splendour_action_after_page_author' );
		}

		if ( splendour_get_theme_option( 'show_filters' ) ) {
			do_action( 'splendour_action_before_page_filters' );
			splendour_show_filters( $splendour_args );
			do_action( 'splendour_action_after_page_filters' );
		} else {
			do_action( 'splendour_action_before_page_posts' );
			splendour_show_posts( array_merge( $splendour_args, array( 'cat' => $splendour_args['parent_cat'] ) ) );
			do_action( 'splendour_action_after_page_posts' );
		}

		do_action( 'splendour_action_blog_archive_end' );

		splendour_blog_archive_end();

	} else {

		if ( is_search() ) {
			get_template_part( apply_filters( 'splendour_filter_get_template_part', 'templates/content', 'none-search' ), 'none-search' );
		} else {
			get_template_part( apply_filters( 'splendour_filter_get_template_part', 'templates/content', 'none-archive' ), 'none-archive' );
		}
	}

	get_footer();
}
Back to Directory File Manager