acf/get_options_pages filter-hookACF 1.0

Usage

add_filter( 'acf/get_options_pages', 'wp_kama_acf_get_options_pages_filter' );

/**
 * Function for `acf/get_options_pages` filter-hook.
 * 
 * @param  $pages 
 *
 * @return 
 */
function wp_kama_acf_get_options_pages_filter( $pages ){
	// filter...
	return $pages;
}
$pages
-

Where the hook is called

acf_get_options_pages()
acf/get_options_pages
acf/pro/options-page.php 451
$pages = apply_filters( 'acf/get_options_pages', $pages );

Where the hook is used in Advanced Custom Fields PRO

Usage not found.