大家好,我有一个大问题试图解决这个问题。我知道我必须使用 JavaScript,但我就是不明白如何使用。这是我的脚本:
<?php
$posts = query_posts('order=DESC&cat=-2');
$cols = 4;
$filas = array_chunk($posts, $cols);
$columnas = array();
foreach( $filas as $row => $articulos ) {
foreach( $articulos as $ix => $articulo ) {
$columnas[$ix] = isset($columnas[$ix]) ? $columnas[$ix] : array();
$columnas[$ix][] = $articulo;
}
}
?>
<?php foreach($columnas as $posts):?> etc, etc ... <?php endforeach; ?>
$cols 值将根据用户的窗口屏幕而变化。IE = 如果窗口屏幕是(某个值)那么 $cols =(某个值)
我将非常感谢这方面的任何帮助。
干杯!