<?php get_header(); ?>
<div id="marco-post">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2 class="titulo"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="post">
<div id="mmedia">
<div class="sipno">
<?php the_content(); ?>
</div>
</div>
<div class="linea"></div>
</div>
<div class="generos">
<?php the_tags('Generos: ',' , '); ?> <?php edit_post_link('Editar', '<p style="font-weight: 700;text-align: right;display: block;float: right;">', '</p>'); ?>
</div>
<div id="relacion">
<?php
$original_post = $post;
$tags = wp_get_post_tags($post->ID);
if ($tags) {
echo '<div class="trela">Peliculas relacionadas</div>';
$first_tag = $tags[0]->term_id;
$args=array(
'tag__in' => array($first_tag),
'post__not_in' => array($post->ID),
'showposts'=>4,
'caller_get_posts'=>1
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
echo "";
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div class='tpost'>
<a href="<?php the_permalink() ?>">
<img width="130" height="200" src="<?php getImage('1'); ?>" alt="<?php the_title(); ?>" />
</a>
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
</div>
<?php endwhile;
echo "";
}
}
$post = $original_post;
wp_reset_query();
?>
</div>
<div class="comentarios">
<?php comments_template(); ?>
</div>
<?php endwhile; else: ?>
<h1>Nada encontrado.</h1>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>