@YouON said:
lo risolviamo qui perché deve servire per tutti
posta la parte di codice html del tema dove viene chiamato il campo personalizzato
Ok, giusto! non ci avevo pensato XD
ti allego direttamente il file index.php in materia sono molto ignorante quindi nn saprei esattamente quale è quella parte di codice...
[php]<?php get_header(); ?>
<div id="left">
<?php include (ABSPATH . '/wp-content/plugins/content-gallery/gallery.php'); ?>
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div class="entry">
<div class="post" id="post-<?php the_ID(); ?>">
<span class="custom_image">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Read the rest of <?php the_title_attribute(); ?>"><img src="<?php echo get_post_meta($post->ID, "Image", true);?>" /></a>
</span>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Read the rest of <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</h2>
<span class="content">
<?php the_excerpt(); ?>
</span>
<div class="clearfloat"></div>
<div class="allinfos">
<span class="alignright">
[<a href="<?php the_permalink() ?>" rel="bookmark" title="Read the rest of <?php the_title(); ?>"> More </a>]
</span>
<span class="date"><?php the_time('F jS, Y') ?></span> | <span class="comments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> </span> | <span class="category">Posted in <?php the_category(', ') ?></span> | <?php edit_post_link('edit', '', ''); ?>
</div>
</div>
</div>
<?php endwhile; ?>
<!-- page navi -->
<?php if(function_exists('wp_page_numbers')) { wp_page_numbers(); } ?>
<!-- page navi end -->
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
[/php]