조회 및 쉬운 표시를위한 열 작성
테마에서 템플릿 태그와 루프에 잘 맞는 것을 사용하는 것이 더 유용 할 것입니다. 내 첫 대답은 그다지 집중하지 않았습니다. 또한 빠른 채택을하기에는 너무 복잡하다고 생각했습니다.
내 마음에 떠오른 더 쉬운 접근 방식은 열로 "루프" 를 확장 하고 지금 까지이 솔루션에 도달했습니다.
WP_Query_Columns는 개체를 쉽게 이상 반복 할 수 colums와 표준 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.
...
더 긴 답변 :
(이것은 기본적으로 위의 내용을 다루는 방법이지만 간단한 수학 연산으로 문제를 실제로 해결하는 방법을 더 잘 설명합니다. 새로운 솔루션은 미리 계산 된 것을 반복하는 것입니다.)
실제로 문제를 해결하는 데 필요한 양에 따라 다릅니다.
예를 들어 열당 항목 수가 1 인 경우 매우 간단합니다.
<?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의 답변조차도 경우에 따라 작동 할 수 있습니다 (위의 예제는 열 당 한 항목 당 시나리오의 경우와 같이).
먼저 수학 :
//
// 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 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 환경에서 마지막 예제를 실행하지 않았지만 적어도 구문 상 정확해야합니다.)