-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsingle.php
39 lines (28 loc) · 995 Bytes
/
single.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
<!-- Este es mi Single. Incluyo 3 archivos que juntos renderizan las entradas -->
<!-- Obtenemos el header -->
<?php get_header("single"); ?>
<body>
<header>
<?php get_template_part("nav"); ?>
</header>
<main>
<?php the_post(); ?>
<article>
<header>
<!-- Aqui saco el titulo del post -->
<h1><?php the_title(); ?></h1>
<!-- Aqui saco el autor y la fecha de publicacion del post -->
<small>
Por <?php the_author(', '); ?> el <?php the_time('F jS, Y'); ?> en <?php the_category(', ') ?> | <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
</small>
</header>
<!-- Aqui el contenido del post -->
<div class="single-content">
<?php the_content(); ?>
</div>
<footer class="comments">
<?php comments_template(); ?>
</footer>
</article>
</main>
<?php get_footer("single"); ?>