0
I am wanting to customize the looping of my posts to display the posts as follows, the first to the left and the second to the right and so on. It went wrong (and I knew it was going to go wrong), but I did a test as follows:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<p align="left"><?php the_title( '<h3>', '</h3>' ); ?>
<?php the_time( $d ); ?>
<?php the_category( ' ' ); ?></p>
<p align="right"><?php the_title( '<h3>', '</h3>' ); ?>
<?php the_time( $d ); ?>
<?php the_category( ' ' ); ?></p>
<?php endwhile; else : ?>
<p><?php _e( 'Sem posts para exibição' ); ?></p>
<?php endif; ?>
That was just a test to see if it worked, well, it didn’t... I’d like some help from the skulls, because I couldn’t find what I wanted in the documentation... Thank you...
About the css i manjo man, vlw! I did it this way just for test same... But I asked for a help and I got a lesson! Thank you very much!
– Ursones