创建查询列并轻松显示
在主题中,将某些东西很好地适合模板标签和循环可能更有用。我的第一个答案不是那么集中。另外,我认为对于快速采用来说有点太复杂了。
我想到的一种更简单的方法是用列扩展“循环”,到现在为止已经有了这个解决方案:
WP_Query_Columns对象使用可以轻松迭代的列 “扩展”了任何标准WP查询。第一个参数是查询变量,第二个参数是每列要显示的项目数:
<?php $the_query = new WP_Query('cat=1&showposts=50&orderby=title&order=asc');?>
<?php foreach(new WP_Query_Columns($the_query, 10) as $column_count) : ?>
<ul>
<?php while ($column_count--) : $the_query->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php endforeach; ?>
要使用它,只需将这个要点的WP_Query_Columns类添加到主题function.php中。
高级用法
如果需要当前显示的列号(例如,对于某些偶/奇CSS类,也可以从foreach中获取该列号:
<?php foreach(new WP_Query_Columns($the_query, 10) as $column => $column_count) : ?>
列总数也可用:
<?php
$the_columns = new WP_Query_Columns($the_query, 10);
foreach($the_columns as $column => $column_count) :
?>
<h2>Column <?php echo $column; ?>/<?php echo sizeof($the_columns); ?></h2>
<ul>...
二十个例子
我可以快速破解二十一个主题进行测试,并以此方式在任何循环上方添加标题。它已插入loop.php,开头是主题代码:
<?php /* If there are no posts to display, such as an empty archive page */ ?>
<?php if ( ! have_posts() ) : ?>
<div id="post-0" class="post error404 not-found">
<h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyten' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</div><!-- #post-0 -->
<?php endif; ?>
<!-- WP_Query_Columns -->
<?php
### Needs WP_Query_Columns --- see http://wordpress.stackexchange.com/q/9308/178
$query_copy = clone $wp_query; // save to restore later
foreach( new WP_Query_Columns($wp_query, 3) as $columns_index => $column_count ) : ?>
<ul>
<?php
while ( $column_count-- ) : the_post(); ?>
<li><h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2></li>
<?php endwhile; ?>
</ul>
<?php endforeach; ?>
<?php $wp_query = $query_copy;?>
<?php
/* Start the Loop.
...
对于更长的答案:
(基本上,这就是我到上面的内容的方式,但是更好地解释了如何通过简单的数学运算来实际解决问题。我的新解决方案是对预先计算的内容进行迭代。)
解决您的问题实际需要多少。
例如,如果每列的项目数等于一,则这非常简单:
<?php $the_query = new WP_Query('cat=1&showposts=50&orderby=title&order=asc');?>
<?php while ($the_query->have_posts()) : $the_query->the_post();?>
<ul>
<li>.. </li>
<ul>
<?php endwhile; wp_reset_query(); ?>
</ul>
即使使用了简单的代码,也可以看出要做出多个决定:
- 一栏中有几项?
- 总共有几项?
- 有没有要开始的新专栏?
- 并有专栏结尾吗?
最后一个问题对于HTML输出非常有趣,因为您可能不仅希望将项目括起来,而且还希望将包含html元素的列括起来。
幸运的是,使用代码,我们可以在变量中设置所有这些代码,并创建始终可以满足我们需求的代码。
有时甚至,我们甚至无法从一开始就回答所有问题。例如,总项目数:是否有某个总的整数与整数列匹配的某个,多个准确的计数?
甚至Jan Fabry的答案在某些情况下也可能有效(就像我上面的示例对每个列一个项目的情况一样),您可能会对某些适用于WP_Query返回的任何项目的东西感兴趣。
首先是数学:
//
// arithmetical example:
//
# configuration:
$colSize = 20; // number of items in a column
$itemsTotal = 50; // number of items (total)
# calculation:
$count = 0; // a zero-based counter variable
$isStartOfNewColum = 0 === ($count % $colSize); // modulo operation
$isEndOfColumn = ($count && $isStartOfNewColum) || $count === $itemsTotal; // encapsulation
该代码无法运行,因此我们将其放入一个简单的文本示例中
//
// simple-text example:
//
$column = 0; // init a column counter
for($count=0; $count<= $itemsTotal; $count++) {
$isStartOfNewColum = 0 === ($count % $colSize); // modulo
$isEndOfColumn = ($count && $isStartOfNewColum);
$isStartOfNewColum && $column++; // update column counter
if ($isEndOfColumn) {
printf("/End of Column: %d\n", $column-1);
}
if ($isStartOfNewColum) {
printf("<start of Column: %d\n", $column);
}
printf(" * item %d\n", $count);
}
if ($count && !$isEndOfColumn && --$count === $itemsTotal) {
printf("/End of Column: %d\n", $column);
}
printf("Done. Total Number of Columns: %d.\n", $column);
这实际上在运行,并且已经执行了一些输出:
<start of Column: 1
* item 0
* item 1
* item 2
* item 3
...
* item 17
* item 18
* item 19
/End of Column: 1
<start of Column: 2
* item 20
* item 21
* item 22
...
* item 37
* item 38
* item 39
/End of Column: 2
<start of Column: 3
* item 40
* item 41
* item 42
...
* item 48
* item 49
* item 50
/End of Column: 3
Done. Total Number of Columns: 3.
这已经模拟了很好怎么可能看起来像一个WordPress模板:
//
// wordpress example:
//
$count = 0; // init item counter
$column = 0; // init column counter
$colSize = 10; // column size of ten this time
$the_query = new WP_Query('cat=1&showposts=50&orderby=title&order=asc');
$itemsTotal = $the_query->post_count;
?>
<?php while ($the_query->have_posts()) : $the_query->the_post();?>
<?php
# columns display variables
$isStartOfNewColum = 0 === ($count % $colSize); // modulo
$isEndOfColumn = ($count && $isStartOfNewColum);
$isStartOfNewColum && $column++; // update column counter
if ($isEndOfColumn) {
print('</ul>');
}
if ($isStartOfNewColum) {
printf('<ul class="col-%d">', $column);
}
?>
<li> ... make your day ...
</li>
<?php endwhile; ?>
<?php
if ($count && !$isEndOfColumn && --$count === $itemsTotal) {
print('</ul>');
}
// You don't have to do this in every loop, just once at the end should be enough
wp_reset_query();
?>
(我尚未在WP环境中执行最后一个示例,但至少在语法上应正确。)