Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
так это будет просто вывод в один столбик, только с фиксированной шириной...Самый обычный способ - открой index.php в wp-content/themes/шаблон/
И найди примерно такую строчку:
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?></div>
Поменяй на следующее
<div class="entry" style="width:ширина колонки;float:left;display:block">
Но знай, что высота будет разная и смотреть это будет по галимому, надо дальше мозговать как <---more---> ставилось автоматом после тольки-то символов или что-то другое..
<table class="home-cont">
<?php
$homeposts = get_posts('numberposts=6&category=1&order=ASC');
$row = 0;
$col = 0;
$counter = 1;
foreach($homeposts as $post){
setup_postdata($post);
if ( $col == 0 ) {
?>
<tr class="row-<?php echo $row; ?>">
<?php
}
?>
<td class="col-<?php echo $col; if ( $counter == count ( $homeposts ) ) echo ' last' ?>">
<div class="post">
<div class="heading"><div><h2><a href="<?php the_permalink(); ?>"><?php the_title (); ?></a></h2></div></div>
<div class="entry"><?php the_content( __( '<span>Подробнее...</span>' , 'template' ) ); ?></div>
</div>
</td>
<?php
if ( ( $col == 0 ) && ( $counter <> count ( $homeposts ) ) ) {
$col++;
} elseif ( ( $col == 0 ) && ( $counter == count ( $homeposts ) ) ) {
?>
<td> </td>
</tr>
<?php
} elseif ( ( $col == 1 ) ) {
$col = 0;
$row++;
?>
</tr>
<?php
}
$counter++;
}
?>
</table>
Нет, если ширину поста можно 2 раза уложить в ширине блока, предназначенного для контента, то два столбцатак это будет просто вывод в один столбик, только с фиксированной шириной...