Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: documentation_ignore_functions

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
611      sort( $functions );
612
613      /**
614       * Filters the list of functions and classes to be ignored from the documentation lookup.
615       *
616       * @since 2.8.0
617       *
618       * @param string[] $ignore_functions Array of names of functions and classes to be ignored.
619       */
620      $ignore_functions = apply_filters( 'documentation_ignore_functions', $ignore_functions );
621
622      $ignore_functions = array_unique( $ignore_functions );
623
624      $out = array();
625      foreach ( $functions as $function ) {
626           if ( in_array( $function, $ignore_functions ) ) {
627                continue;
628           }
629           $out[] = $function;