Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- if('page' == get_option('show_on_front')){ get_template_part('index');}
- else {
- /* mooberry dreams -- added check for taxonomy grid */
- if (get_post_type() == 'mbdb_tax_grid' && is_main_query() && !is_admin()) {
- get_template_part('mbdb-tax-grid');
- } else {
- /* end mooberry dreams changes */
- get_header();
- $quality_pro_options=theme_data_setup();
- $current_options = wp_parse_args( get_option( 'quality_pro_options', array() ), $quality_pro_options );
- //****** get index static banner ********
- get_template_part('index', 'static');
- //****** get index service *********/
- if ( $current_options['service_enable'] == true ) {
- get_template_part('index', 'service');
- }
- //****** get index Projects *********/
- if ( $current_options['home_projects_enabled'] == true ) {
- get_template_part('index', 'projects');
- }
- //****** get index Blog *********/
- if ( $current_options['home_blog_enabled'] == true ) {
- get_template_part('index', 'blog');
- }
- } // mooberry dreams change
- get_footer();
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment