Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_kses_uri_attributes

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
986       * Filters the list of attributes that are required to contain a URL.
987       *
988       * Use this filter to add any `data-` attributes that are required to be
989       * validated as a URL.
990       *
991       * @since 5.0.1
992       *
993       * @param array $uri_attributes HTML attributes requiring validation as a URL.
994       */
995      $uri_attributes = apply_filters( 'wp_kses_uri_attributes', $uri_attributes );
996
997      return $uri_attributes;
998 }
999
1000 /**
1001  * Callback for `wp_kses_split()`.
1002  *
1003  * @since 3.1.0
1004  * @access private