108 lines
3.2 KiB
PHP
108 lines
3.2 KiB
PHP
<?php
|
|
/**
|
|
* Template Name: Seccions ample
|
|
*
|
|
* Seccions de pàgines índex amb contingut i fills, però el contingut presentat com un índex
|
|
* @link http://themehybrid.com/themes/hybrid/page-templates/categories
|
|
*
|
|
* @package Hangar
|
|
* @subpackage Template
|
|
*/
|
|
get_header(); ?>
|
|
|
|
<!-- index pàgina pare-->
|
|
|
|
<div id="main">
|
|
<div id="content" class="indexall wide">
|
|
|
|
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
|
|
|
|
<div id="post-<?php the_ID(); ?>" <?php post_class("boxentry"); ?>>
|
|
|
|
<div class="entry-content">
|
|
<h2 class="box index"><?php the_title(); ?></h2>
|
|
<?php if ( has_post_thumbnail() ) : // check if the post has a Post Thumbnail assigned to it.
|
|
the_post_thumbnail('thumbnail'); ?>
|
|
<p class="excerptbox"><?php the_excerpt(); ?></p>
|
|
<?php else : ?>
|
|
<div class="contentcurt">
|
|
<?php the_content(); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php wp_link_pages( array( 'before' => '<p class="page-links pages">' . __( 'Pages:', 'hangar' ), 'after' => '</p>' ) ); ?>
|
|
</div><!-- .entry-content -->
|
|
</div><!-- post .hentry -->
|
|
|
|
<?php $pare = get_the_ID(); endwhile; ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<p class="no-data">
|
|
<?php _e( 'Apologies, but no results were found.', 'hangar' ); ?>
|
|
</p><!-- .no-data -->
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div id="content" class="indexall fills">
|
|
<!--ara els fills-->
|
|
<?php
|
|
$indexseccions = new WP_Query();
|
|
$indexseccions->query('posts_per_page=-1&post_type=page&orderby=menu_order&order=asc&post_parent=' . $pare );
|
|
?>
|
|
|
|
<?php if ($indexseccions->have_posts()) : ?>
|
|
<?php echo '<ul>'; $i = 0; while ($indexseccions->have_posts()) : $indexseccions->the_post(); $i++;
|
|
if ($pare == 2 ) : //artistes residents post=2
|
|
$tipus = 'art';
|
|
elseif ($pare == 58856) : //artistes residents post=58856 por cambio página el 2022 07 19
|
|
$tipus = 'art';
|
|
elseif ($pare == 46565) : //artistes residents estada curta post=46565
|
|
$tipus = 'art';
|
|
elseif ($pare == 46572) : //artistes amb beca post=46572
|
|
$tipus = 'art';
|
|
elseif ($pare == 58844) : //artistes internacionals post=58844
|
|
$tipus = 'art';
|
|
elseif ($pare == 136) : //desc+arregues post=136
|
|
$tipus = 'desc';
|
|
elseif ($pare == 74) : //equip post=74
|
|
$tipus = 'equip';
|
|
elseif ($pare == 40378) : //patronat post=40378
|
|
$tipus = 'equip';
|
|
else:
|
|
$tipus = 'pag';
|
|
endif;
|
|
?>
|
|
|
|
<?php include(TEMPLATEPATH . "/caixes.php"); ?>
|
|
|
|
<?php endwhile; wp_reset_query(); ?>
|
|
</ul>
|
|
<?php else: ?>
|
|
<p class="no-data">
|
|
<?php //_e( 'Apologies, but no results were found.', 'hangar' ); ?>
|
|
</p><!-- .no-data -->
|
|
<?php endif; ?>
|
|
|
|
</div><!-- .content indexall fills-->
|
|
|
|
<div id="content" class="indexall extra">
|
|
<?php
|
|
// Detect plugin. For use on Front End only.
|
|
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
|
// check for plugin using plugin name
|
|
if ( is_plugin_active( 'hangar-wp-plugin/hangar-wp-plugin.php' ) ) {
|
|
//plugin is activated do
|
|
hangar_show_extra_content();
|
|
}
|
|
?>
|
|
|
|
</div><!-- end indexall extra -->
|
|
|
|
</div>
|
|
<!--end Main-->
|
|
|
|
<?php get_footer(); ?>
|