get_pages filter-hook . WP 1.0
This filter is documented in wp-includes/post.php
Usage
add_filter( 'get_pages', 'filter_function_name_1919', 10, 2 ); function filter_function_name_1919( $pages, $parsed_args ){ // filter... return $pages; }
- $pages
- -
- $parsed_args
- -
Where the hook is called
get_pages
wp-includes/post.php 5575
$pages = apply_filters( 'get_pages', $pages, $parsed_args );
wp-includes/post.php 5735
$pages = apply_filters( 'get_pages', array(), $parsed_args );
wp-includes/post.php 5787
return apply_filters( 'get_pages', $pages, $parsed_args );