Guest User

Untitled

a guest
Jul 16th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. <?php
  2.  
  3. // Alter and print view in page.tpl.php
  4.  
  5. $view = views_get_view('testview');
  6. $view->set_display('default');
  7.  
  8. // Turn off cache
  9. $view->display_handler->set_option('cache',array(
  10.         'type' => 'none',
  11.     ));
  12.  
  13. // Set number of items per view
  14. $view->display_handler->set_option('pager',array(
  15.         'type' => 'full',            
  16.        'options' => array(
  17.             'items_per_page' => '1',
  18.     ),
  19.     )
  20. );
  21.  
  22. print $view->execute_display('default');
  23. ?>
Add Comment
Please, Sign In to add comment