Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: embed_maybe_make_link

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
265
266      /**
267       * Conditionally makes a hyperlink based on an internal class variable.
268       *
269       * @param string $url URL to potentially be linked.
270       * @return string Linked URL or the original URL.
271       */
272      function maybe_make_link( $url ) {
273           $output = ( $this->linkifunknown ) ? '<a href="' . esc_url($url) . '">' . esc_html($url) . '</a>' : $url;
274           return apply_filters( 'embed_maybe_make_link', $output, $url );
275      }
276 }
277 $GLOBALS['wp_embed'] = new WP_Embed();
278