-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
37 lines (21 loc) · 951 Bytes
/
index.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
<!--
PLANTILLA DE INICIO. ES OBLIGATORIA. (INDEX.PHP)
-->
<?php get_header(); ?> <!-- HEADER.PHP -->
<div id="contenido"> <!-- INICIO del contenido principal. -->
<section>
<!-- LOOP basico de WordPress. Muestra las ultimas entradas. -->
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<article>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<small>Publicado el <?php the_time('j/m/Y') ?> por <?php the_author_posts_link() ?> </small>
<?php the_excerpt(); ?> <!-- extracto de la entrada. -->
</article>
<?php endwhile; else: ?>
<p><?php _e('No hay entradas.'); ?></p> <!-- Si no encuentra ninguna entrada, saldra este mensaje. -->
<?php endif; ?>
</section>
<?php get_sidebar()?> <!-- SIDEBAR.PHP -->
</div> <!-- FIN del contenido principal. -->
<?php get_footer(); ?> <!-- FOOTER.PHP -->