Ver Mensaje Individual
  #4 (permalink)  
Antiguo 04/02/2009, 05:50
originalconcept
 
Fecha de Ingreso: septiembre-2006
Mensajes: 132
Antigüedad: 17 años, 8 meses
Puntos: 2
Respuesta: problema con wordpress theme

Código PHP:
<?php get_header(); ?>

<div id="content">

    <div class="postleft">
    
        <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
        
        <?php if( get_post_meta($post->ID"image"true) ): ?>
        <p><a href="<?php the_permalink() ?>"><img style="border:none" src="<?php echo get_post_meta($post->ID"image"true); ?>" alt="<?php the_title(); ?>" /></a></p>
        <?php else: ?>
        <p><img style="border:none" src="<?php bloginfo('template_url'); ?>/images/default.png" alt="<?php the_title(); ?>" /></a></p>
        <?php endif; ?>    
            
    </div>
            
    <div class="postright">
    
        <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    
        <p>Posted: <?php the_time('F j, Y'); ?>&nbsp;<?php edit_post_link('(Edit)'''''); ?><br />
        Filed under: <?php the_category(', '?><br /> 
        Tagged: <?php the_tags(''?><br />
        Comments: <?php comments_popup_link('Leave a Comment''1 Comment''% Comments'); ?></p>
        
        <h2>Description</h2>
        <?php the_content(__('Read more'));?>
        
        <?php endwhile; else: ?>
    
        <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?>
        <p><?php posts_nav_link(' — '__('&laquo; Previous Photo'), __('Next Photo &raquo;')); ?></p>

    </div>
    
    <div style="clear:both;"></div>
        
    <div id="photos">
        
        <h3>Recent Photos</h3>
        <?php $recent = new WP_Query("showposts=10&offset=1"); while($recent->have_posts()) : $recent->the_post();?>
        <a href="<?php the_permalink() ?>"><img style="float:left; margin:0px 10px 20px 0px; width:75px;height:50px;" src="<?php echo get_post_meta($post->ID"image"true); ?>" alt="<?php the_title(); ?>" /></a>                
        <?php endwhile; ?>
        
    </div>

</div>

<!-- The main column ends  -->

<?php get_footer(); ?>

Acá está el código del HOME, capaz sirva de algo.
__________________
Gracias por todo
Saludos!!!