NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718
  1. <?php
  2. class P2P_List {
  3. public $items;
  4. public $current_page = 1;
  5. public $total_pages = 0;
  6. function __construct( $items, $item_type ) {
  7. if ( is_numeric( reset( $items ) ) ) {
  8. // Don't wrap when we just have a list of ids
  9. $this->items = $items;
  10. } else {
  11. $this->items = _p2p_wrap( $items, $item_type );
  12. }
  13. }
  14. }