Listing Side by side

Asked

Viewed 42 times

1

I’m trying to list the news on wordpress, only I want to list side by side, I did the while wordpress default to list the news como eu fiz abaixo

inserir a descrição da imagem aqui Upshot: inserir a descrição da imagem aqui

I wanted the news to be side by side and not repeated...

I took another test, removed the next column como eu fiz abaixo inserir a descrição da imagem aqui It works the way I want it to inserir a descrição da imagem aqui

1 answer

1


You can do it this way:

<?php 
  $i = 0;
  while( have_posts() ) : the_post(); 
    if( $i % 2 == 0 ) : 
?>
      //html da coluna da esquerda
<?php 
    else:
?>
      //html da coluna da direita
<?php 
    endif;
    $i++;
  endwhile;
?>

This way you ensure that each one will be printed with the respective feature of each column.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.