Как разбить список тегов на страницы
1 ответ
- голосов
-
- 2011-07-05
вы можете разбить страницу на страницы,просто добавив
/page/n
в конец URL-адреса,гдеn
- это желаемый номер страницы. Однако создание ваших следующих/предыдущих ссылок будет делом вручную. тогда номер страницы будет доступен черезget_query_var('paged')
. затем используйте аргументnumber
дляget_terms
чтобы выбрать 40 за раз,используйте аргументoffset
,который будет номером вашей страницы -1 * номер на странице,чтобы выбрать текущую «страницу» терминов:$page = ( get_query_var('paged') ) ? get_query_var( 'paged' ) : 1; $taxonomy = 'post_tag'; $offset = ( $page-1 ) * 40; $args = array( 'number' => 40, 'offset' => $offset ); $tax_terms = get_terms( $taxonomy, $args );
Что касается просмотра всего,можно добавить к URL-адресу переменную GET,
?showall=true
,затем установить флажокisset( $_GET['showall'] )
и изменить номер,который нужно получить соответственно.< sizesEDIT
вот небольшой шаблон,который я сделал,чтобы показать пример. Я протестировал его на странице при тестовой установке с красивыми постоянными ссылками,страница была «о»,поэтому ссылки для пагинации были такими:
http://localhost/about/page/2/ http://localhost/about/?showall=true
Если у вас разные постоянные ссылки,вам придется отредактировать раздел нумерации страниц,чтобы отразить ваши настройки.
<?php get_header(); // if show all is set if( isset($_GET['showall']) ): $args = array( 'hide_empty' => 0 ); else: // else show paged $page = ( get_query_var('paged') ) ? get_query_var( 'paged' ) : 1; // number of tags to show per-page $per_page = 40; $offset = ( $page-1 ) * $per_page; $args = array( 'number' => $per_page, 'offset' => $offset, 'hide_empty' => 0 ); endif; $taxonomy = 'post_tag'; $tax_terms = get_terms( $taxonomy, $args ); echo '<ul>'; foreach ($tax_terms as $tax_term) { echo '<li>' . '<a href="' . esc_attr(get_term_link($tax_term, $taxonomy)) . '" title="' . sprintf( __( "View all posts in %s" ), $tax_term->name ) . '" ' . '>' . $tax_term->name.'</a></li>'; } echo '</ul>'; // pagination // if showall isn't set if( !isset($_GET['showall']) ): $total_terms = wp_count_terms( 'post_tag' ); $pages = ceil($total_terms/$per_page); // if there's more than one page if( $pages > 1 ): echo '<ul>'; for ($pagecount=1; $pagecount <= $pages; $pagecount++): echo '<li><a href="'.get_permalink().'page/'.$pagecount.'/">'.$pagecount.'</a></li>'; endfor; echo '</ul>'; // link to show all echo '<a href="'.get_permalink().'?showall=true">show all</a>'; endif; else: // showall is set, show link to get back to paged mode echo '<a href="'.get_permalink().'">show paged</a>'; endif; get_footer(); ?>
you could paginate your page by simply adding
/page/n
to the end of the URL, wheren
is the desired page number. creating your next/prev links will be a manual affair though. the page number will then be accessible viaget_query_var('paged')
. then use thenumber
argument forget_terms
to select 40 at a time, use theoffset
argument, which will be your page number -1 * number per page, to select the current "page" of terms:$page = ( get_query_var('paged') ) ? get_query_var( 'paged' ) : 1; $taxonomy = 'post_tag'; $offset = ( $page-1 ) * 40; $args = array( 'number' => 40, 'offset' => $offset ); $tax_terms = get_terms( $taxonomy, $args );
as for viewing all, maybe append a GET var to the URL,
?showall=true
, then checkisset( $_GET['showall'] )
and change the number to fetch accordingly.EDIT
here's a quick template I made to show an example. I tested it on a page on a test install with pretty permalinks, the page was 'about', so the pagination links were:
http://localhost/about/page/2/ http://localhost/about/?showall=true
if your permalinks are different, you'll have to edit the pagination section to reflect your setup.
<?php get_header(); // if show all is set if( isset($_GET['showall']) ): $args = array( 'hide_empty' => 0 ); else: // else show paged $page = ( get_query_var('paged') ) ? get_query_var( 'paged' ) : 1; // number of tags to show per-page $per_page = 40; $offset = ( $page-1 ) * $per_page; $args = array( 'number' => $per_page, 'offset' => $offset, 'hide_empty' => 0 ); endif; $taxonomy = 'post_tag'; $tax_terms = get_terms( $taxonomy, $args ); echo '<ul>'; foreach ($tax_terms as $tax_term) { echo '<li>' . '<a href="' . esc_attr(get_term_link($tax_term, $taxonomy)) . '" title="' . sprintf( __( "View all posts in %s" ), $tax_term->name ) . '" ' . '>' . $tax_term->name.'</a></li>'; } echo '</ul>'; // pagination // if showall isn't set if( !isset($_GET['showall']) ): $total_terms = wp_count_terms( 'post_tag' ); $pages = ceil($total_terms/$per_page); // if there's more than one page if( $pages > 1 ): echo '<ul>'; for ($pagecount=1; $pagecount <= $pages; $pagecount++): echo '<li><a href="'.get_permalink().'page/'.$pagecount.'/">'.$pagecount.'</a></li>'; endfor; echo '</ul>'; // link to show all echo '<a href="'.get_permalink().'?showall=true">show all</a>'; endif; else: // showall is set, show link to get back to paged mode echo '<a href="'.get_permalink().'">show paged</a>'; endif; get_footer(); ?>
-
Спасибо за ответ.Кажется,я не могу заставить его работать.Где и как мне использовать ваш код?thanks for the reply. I can't seem to make it work. Where and how exactly I am to use your code?
- 0
- 2011-07-06
- Tara
-
Я все еще пытаюсь заставить его работать,но безуспешно. Где и как мне использовать ваш код?I still trying make it work but no luck. Where and how exactly I am to use your code?
- 0
- 2011-07-23
- Tara
-
@t-p - см. отредактированный ответ.@t-p - see the edited answer.
- 0
- 2011-07-23
- Milo
-
превосходно!Это работает!Пожалуйста,помогите мне с этим: в верхней части списка тегов есть тег с именем "Пример".Я понятия не имею,откуда это.У меня нет тега «Пример»,поэтому,когда я нажимаю на него,я получаю «не найден».Как избавиться от него в списке?спасибо за ваше время и помощь.excellent! It workss! Please help me with this: on top of the tag list, there is this tag named "Example". I have no idea where its coming from. I don't have "Example" tag and as such when I click on it I get "not found". How to can I get rid of it from the list? thanks for your time and help.
- 0
- 2011-07-23
- Tara
-
Вместо написания собственного кода для разбивки на страницы попробуйте использоватьpaginate_links,https://codex.wordpress.org/Function_Reference/paginate_linksInstead writing own code for pagination, try using paginate_links, https://codex.wordpress.org/Function_Reference/paginate_links
- 0
- 2019-02-07
- dipak_pusti
У меня есть страница,на которой отображается список всех тегов моего блога.Я использую этот код,который отлично работает:
Вопрос: как я могу разбить эту крышку на страницы (скажем,40 на страницу).Какой код для этого,желательно с возможностью «видеть все теги».
Спасибо.