Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: kses_allowed_protocols

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
6611
6612      if ( ! did_action( 'wp_loaded' ) ) {
6613           /**
6614            * Filters the list of protocols allowed in HTML attributes.
6615            *
6616            * @since 3.0.0
6617            *
6618            * @param string[] $protocols Array of allowed protocols e.g. 'http', 'ftp', 'tel', and more.
6619            */
6620           $protocols = array_unique( (array) apply_filters( 'kses_allowed_protocols', $protocols ) );
6621      }
6622
6623      return $protocols;
6624 }
6625
6626 /**
6627  * Return a comma-separated string of functions that have been called to get
6628  * to the current point in code.
6629  *