cleaned up code, removed comments and pagin code

This commit is contained in:
jorge-vitrubio 2022-09-27 10:29:26 +02:00
parent 461de6aa9b
commit cd3d4ac6b8
1 changed files with 28 additions and 46 deletions

View File

@ -5,55 +5,41 @@
<?php wp_breadcrumb();?>
<div id="pagina" class="shadow">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<!-- buscar el nom de l'artista i la data: metatgs -->
<?php $tiporesid = get_post_meta($post->ID, 'autor_tipo_resid', true);
if ($tiporesid) : ?>
<p class="curt"><?php echo __($tiporesid); ?> </p>
<?php endif;?>
<?php $dataresid = get_post_meta($post->ID, 'autor_data_resid', true);
if ($dataresid) : ?>
<p class="curt"><?php echo __($dataresid); ?> </p>
<?php endif;?>
<?php $autorobra = get_post_meta($post->ID, 'autor_obra', true);
if ($autorobra) : ?>
<p class="blue curt"><?php echo $autorobra; ?> </p>
<?php endif;?>
<?php $dataobra = get_post_meta($post->ID, 'data_obra', true);
if ($dataobra) : ?>
<p class="peullarg"><?php echo $dataobra; ?> </p>
<?php endif;?>
<?php $carrec = get_post_meta($post->ID, 'carrec', true);
if ($carrec) : ?>
<p class="peullarg"><?php echo $carrec; ?> </p>
<p class="curt"><?php echo get_post_meta($post->ID, 'telefon', true) ?> </p>
<p class="peullarg"><?php echo get_post_meta($post->ID, 'email', true) ?> </p>
<?php endif;?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<div class="clear"></div>
<!-- buscar el nom de l'artista i la data: metatgs -->
<?php $tiporesid = get_post_meta($post->ID, 'autor_tipo_resid', true);
if ($tiporesid) : ?>
<p class="curt"><?php echo __($tiporesid); ?> </p>
<?php endif;?>
<?php $dataresid = get_post_meta($post->ID, 'autor_data_resid', true);
if ($dataresid) : ?>
<p class="curt"><?php echo __($dataresid); ?> </p>
<?php endif;?>
<?php $autorobra = get_post_meta($post->ID, 'autor_obra', true);
if ($autorobra) : ?>
<p class="blue curt"><?php echo $autorobra; ?> </p>
<?php endif;?>
<?php $dataobra = get_post_meta($post->ID, 'data_obra', true);
if ($dataobra) : ?>
<p class="peullarg"><?php echo $dataobra; ?> </p>
<?php endif;?>
<?php $carrec = get_post_meta($post->ID, 'carrec', true);
if ($carrec) : ?>
<p class="peullarg"><?php echo $carrec; ?> </p>
<p class="curt"><?php echo get_post_meta($post->ID, 'telefon', true) ?> </p>
<p class="peullarg"><?php echo get_post_meta($post->ID, 'email', true) ?> </p>
<?php endif;?>
<?php the_content(); ?>
<div class="clear"></div>
<?php wp_link_pages( array( 'before' => '' . __( 'Pages:', 'hangar' ), 'after' => '' ) ); ?>
<?php edit_post_link( __( 'Edit this page &rarr;', 'hangar' ), '', '' ); ?>
<?php // comments_template( '', true ); ?>
<?php wp_link_pages( array( 'before' => '' . __( 'Pages:', 'hangar' ), 'after' => '' ) ); ?>
<?php edit_post_link( __( 'Edit this page &rarr;', 'hangar' ), '', '' ); ?>
<?php endwhile; ?>
<!--<div id="navegacio" class="dins">
<p class="previous"><?php previous_post_link( '%link', '' . _x( '&larr; Previous Post', 'Previous post link', 'hangar' ) . '' ); ?></p>
<p class="next"><?php next_post_link( '%link', __('') . _x( 'Next Post &rarr;', 'Next post link', 'hangar' ) . '' ); ?></p>
</div>-->
</div>
<!--end Page-->
</div>
<!--end Content-->
@ -67,12 +53,8 @@
hangar_show_extra_content();
}
?>
</div><!-- end indexall extra -->
<?php //get_sidebar('secondary'); ?>
</div>
<!--end Main-->