WP_Query offset argument does not work
I want to display all posts starting from a certain offset, my query is:
WP_Query( array(
'posts_per_page' = -1,
'offset' = 20,
'cat' = 5,
) );
This query shows all posts without starting from the offset value. Whys is that?