-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-persona.php
61 lines (60 loc) · 2.2 KB
/
content-persona.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
$post_meta = get_post_meta( get_the_ID() );
$is_editor = is_user_logged_in() && current_user_can( 'edit_posts' );
if ( $is_editor ):
$edit_url = add_query_arg('edit', 1);
$edit_url = esc_url( $edit_url );
$edit_btn = "<small><a href=\"{$edit_url}\" title=\"Editar ".get_the_title()."\"><i class=\"fa fa-edit text-secondary\"></i></a></small>";
endif;
$fields = get_field_objects();
$partes_nombre = array_filter($post_meta, function($k){
return endsWith($k, 'Nombre') || endsWith($k, 'Apellido');
}, ARRAY_FILTER_USE_KEY);
$fecha_nac = get_field('field_per_fecha_nac');
$fecha_falle = get_field('field_per_fecha_falle');
// error_log(print_r($fields, true));
// error_log(print_r($post_meta, true));
foreach ($partes_nombre as $parte => &$sa) $sa = $sa[0];
error_log(print_r($partes_nombre, true));
?>
<?php the_title( '<h1 class="text-center pel-titulo"> ', ($is_editor?" ".$edit_btn:'').'</h1>', true ); ?>
<div class="row">
<div class="col-md-4">
<?php if ( has_post_thumbnail() ) :
the_post_thumbnail( 'post-thumbnail', array( 'class' => 'img-fluid poster rounded' ) );
else: ?>
<img src="holder.js/350x400" alt="placeholder" class="img-fluid poster rounded">
<?php endif; ?>
</div>
<div class="col-md-8">
<div class="card box-shadow bg-dark border border-light">
<h3 class="card-header text-center">Biografía</h3>
<div class="card-body text-justify">
<?php the_content(); ?>
</div> <!-- /.card-body -->
<div class="card-footer">
<div class="font-italic">
<div class="col-md-6">
Nombre completo: <?php echo implode(" ", $partes_nombre); ?>
</div>
<?php if ($fecha_nac): ?>
<div class="col-md-6">
Fecha nacimiento: <?php echo $fecha_nac; ?>
</div>
<?php endif; ?>
<?php if ($fecha_falle): ?>
<div class="col-md-6">
Fecha fallecimiento: <?php echo $fecha_falle; ?>
</div>
<?php endif; ?>
</div>
</div>
</div> <!-- /.card -->
</div> <!-- /.col -->
</div> <!-- /.row -->
<div class="row">
<!-- <?php //get_template_part( 'accordion' ); ?> -->
</div> <!--row -->
<div class="row">
<!-- <?php get_template_part('extra-info'); ?> -->
</div> <!--row -->