| Server IP : 74.208.250.37 / Your IP : 216.73.216.114 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : miferval ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/alexvillarreal/wp-content/themes/alex-villarreal/ |
Upload File : |
<?php
/*
Template Name: Conferencias
*/
get_header();
$descripcion = 'Es la conferencia magistral de Alex Villarreal que utiliza el dramático contexto del Monte Everest...';
$url_imagen = 'https://alexvillarreal.com/wp-content/uploads/2017/02/cumbre-mas-alta.jpg';
?>
<div class="wrapper-page">
<h1 class="titulo-seccion text-center">Conferencias</h1>
<?php get_template_part('conferencia-principal') ?>
<div class="contenedor-cuadros">
<?php if ( have_posts() ) :
$contador = 0;
while( have_posts() ) : the_post();
//$imagen_conferencia = get_field('imagen_conferencia');
//$descripcion = get_field('descripcion_corta');
//$url_imagen = $imagen_conferencia['url'];
$descripcion = get_post_meta($post->ID, 'descripcion_corta')[0];
?>
<?php
if ($contador > 0) : ?>
<a href="<?php the_permalink(); ?>">
<div class="contenedor-imagen-cuadro">
<div class="cuadro-info" style="background-image: url('<?= get_the_post_thumbnail_url() ?>')">
<div class="overlay-negro"></div>
<div class="cuadro-descripcion text-center">
<p class="cuadro-titulo"><?php the_title(); ?></p>
<p class="cuadro-categoria"><?php $posttags = get_the_tags(); if ($posttags) { $cont = 0; foreach($posttags as $tag) { if($cont > 0) { echo ', ' . $tag->name;} else { echo $tag->name; } $cont ++;} } //the_tags( $before = '', $sep = ', ') ?></p>
<p class="cuadro-resumen"><?php echo $descripcion; ?></p>
<div class="icono-mas"></div>
</div>
</div>
</div>
</a>
<?php else: ?>
<?php endif; ?>
<?php $contador ++;
endwhile;
endif; ?>
</div>
</div>
<div class="contenedor-frase-footer">
<div class="texto-footer">
<div class="container">
<div class="col-md-12 col-sm-12 text-center">
<img class="icono-frase-footer" src="<?php echo get_template_directory_uri(); ?>/img/icono-carpa.svg" alt="">
<p class="frase-texto-part-1">"No podemos fallar<br>a las citas importantes de la vida.</p>
<p class="frase-texto-part-2">Acepta el reto".</p>
<span class="autor-alexV">Alex Villarreal</span>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>