forked from BralexMtz/bralex-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
executable file
·36 lines (32 loc) · 842 Bytes
/
single.php
File metadata and controls
executable file
·36 lines (32 loc) · 842 Bytes
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
<?php
// sirve para dar vista a las entradas o post, asi como los Custom Post Type
get_header(); ?>
<main class='container my-3'>
<?php
if(have_posts( )){
while(have_posts( )){
the_post( );
?>
<h1 class="my-3"><?php the_title( ); ?></h1>
<div class="row">
<div class="col-5">
<?php
// para traer la imagen destacada con el tamaño deseado
the_post_thumbnail( 'large' );
?>
</div>
<div class="col-7">
<?php
the_content();
?>
</div>
</div>
<?php
get_template_part( "template-parts/post", "navigation" );
?>
<?php
}
}
?>
</main>
<?php get_footer(); ?>