• User Attivo

    Problema modifica template wordpress PHP

    Salve, sto modificando un template wordpress ma ho un problema, il primo articolo ha come classe "alignleft"
    il secondo e il 3 articolo ereditano la stessa classe. Voglio che il 2° e il 3° invece abbiano "alignleft2"
    Potete aiutarmi ?
    Vi posto il codice della struttura dei 3 articoli:

    [php]<div class="storycontent">
    <?php
    if(function_exists('has_post_thumbnail') && has_post_thumbnail()) {
    echo '<a href="'.get_permalink().'">';
    the_post_thumbnail('thumbnail', array('class'=>'alignleft'));
    echo '</a>';
    } else {
    echo resize(get_option('thumbnail_size_w'),get_option('thumbnail_size_h'));
    }
    if(theme_option('excerpt_content')=='2') {
    theme_content(('Read more »', "magazine-basic"));
    } else {
    theme_excerpt(theme_option('excerpt_one'));
    }
    ?>
    </div>
    <?php $x++; ?>
    <?php } elseif($x >= 2 && $x < 4) { ?>
    <?php if($x == 2) { $i=1; ?></div><div id="twocol"><?php } ?>
    <div class="twopost twopost<?php echo $i; $i++; ?>">
    <h1><a href="<?php the_permalink() ?>" title="<?php printf(
    ("Permanent Link to %s", "magazine-basic"), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h1>
    <div class="meta">
    <?php if(theme_option('dates_index')=='on') { echo '<div class="date">'; the_time(get_option('date_format')); echo '</div>'; } ?>
    <?php if(theme_option('authors_index')=='on') { _e("By", "magazine-basic"); echo ' '; the_author_posts_link(); } ?>
    </div>[/php]


  • User Attivo

    Nessuno?