Single.PHP
Olá alguém poderia me falar como deixar minha single.php pra os posts ficar assim igual esse http://www.techtudo.com.br/noticias/noticia/2015/03/evento-misterioso-da-apple-vem-ai-confira-os-possiveis-lancamentos.html
se possível alguém me ajude
single.php
<?php get_header(); ?>
<div id="container">
<div id="content">
<div id="titulo">
<span><?php the_title(); ?></span>
</div>
<div class="corpo">
<?php the_post(); ?>
<div id="box">
<?php the_content(); ?>
</div>
</div>
<?php comments_template('', true); ?>
</div><!-- #content -->
</div><!-- #container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
CSS:
/=== Single ===/
#titulo { width: 720px; height: 50px; line-height: 50px; text-align: left; }
#titulo span { font: 22px arial; font-weight: bold; color: #292929; padding: 5px 0; border-bottom: 2px solid #ed5353; }
.corpo { width: 720px; background: #069; font: 14px arial; border-bottom: 5px solid black; }
Discussão (7)
Carregando comentários...