Tagged Questions
1
vote
2answers
475 views
where is the documentation for add_action() parameters?
I am reading the source of a plugin (gallery to slideshow plugin) to make it behave like i want and it is using an action
add_action( 'the_posts', array( &$this, 'have_gallery' ), 10, 1 );
I ...