07/05/2009, 16:26
|
| Viejo demente | | Fecha de Ingreso: junio-2004 Ubicación: Caracas - Venezuela
Mensajes: 9.027
Antigüedad: 20 años, 5 meses Puntos: 832 | |
Respuesta: Como hago con los post? Mal hecho que hayas borrado el post de apertura . Pego el mensaje original como referencia: Cita: Hola, necesito un poco de ayuda, esto ya me supera, a ver si alguien me puede enseñar.
Aquí se ve el ejemplo: http://openlab.com.ar/boceto/portfolio/ - Quiero que el titulo "Shatteread Dreams" sea el nombre del post.
- Que la descripcion sea mediante un custom tmb, como lo hago?.
- Que la imagen se meta mediante un custom: <?php $image = get_post_meta($post->ID, 'thumb', true); ?>
- Y como hago ahora para que aparezcan todos los post, uno denajo del otro, con este formato que especifiqué más arriba?
Quien me da una mano? muchas gracias!
Código:
<div class="portItem">
<div class="port" <?php post_class() ?> id="post-<?php the_ID(); ?>">
<div class="port_info">
<h1>Shattered Dreams</h1>
<p>Had a chance to create another experimental portfolio piece.</p></div>
<div class="preview_images"><?php $image = get_post_meta($post->ID, 'thumb', true); ?></div>
<div class="clear"></div>
</div>
</div>
Acá les dejo un codigo de ejemplo que saqué de una web: Código PHP:
<div id="content">
<div id="left-container">
<div id="home-entry">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<div class="home-entry-post">
<div class="home-thumb">
<?php $image = get_post_meta($post->ID, 'thumb', true); ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="<?php echo $image; ?>" alt="" /></a>
</div>
<div class="comm">
<?php comments_popup_link('0', '1', '%'); ?>
</div>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="home-date">
<em><?php the_time('F jS, Y') ?> by <?php the_author() ?></em>
</div>
<?php the_content('Continue Reading »'); ?>
<div class="clear"></div>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
</div>
</div>
<div id="right-container">
<a href="http://flashden.net?ref=karu"><img src="<?php bloginfo('template_directory'); ?>/images/add.jpg" class="add" border="none" alt="advertisement" /></a>
</div>
<div class="clear"></div> |