How to change the starting offset of a view's resultset

Let's suppose that you want to split a node list into multiple blocks (ie. views). Eg. you might want to display a few nodes as teasers and the rest as title lists. The answer comes from drupal.org's support forum. You can restrict the view's listing to a subset by specifying a starting offset in the argument handling code. Eg.:
  $offset = 5;

Syndicate content