views:

65

answers:

1

I'm trying to use the set() function, to set $wp_query->query_vars['paged'].

What's the proper syntax for this function?

Thanks.

A: 
global $wp_query;
$wp_query->set('name','value');
nickohrn