Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: script_loader_src

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

This hook occurs 3 times in this file.

Line Code
5782            */
5783           'svgExt'  => apply_filters( 'emoji_svg_ext', '.svg' ),
5784      );
5785
5786      $version = 'ver=' . get_bloginfo( 'version' );
5787
5788      if ( SCRIPT_DEBUG ) {
5789           $settings['source'] = array(
5790                /** This filter is documented in wp-includes/class.wp-scripts.php */
5791                'wpemoji' => apply_filters( 'script_loader_src', includes_url( "js/wp-emoji.js?$version" ), 'wpemoji' ),
5792                /** This filter is documented in wp-includes/class.wp-scripts.php */
5793                'twemoji' => apply_filters( 'script_loader_src', includes_url( "js/twemoji.js?$version" ), 'twemoji' ),
5794           );
5795      } else {
5796           $settings['source'] = array(
5797                /** This filter is documented in wp-includes/class.wp-scripts.php */
5798                'concatemoji' => apply_filters( 'script_loader_src', includes_url( "js/wp-emoji-release.min.js?$version" ), 'concatemoji' ),
5799           );
5800      }
5801
5802      wp_print_inline_script_tag(
5803           sprintf( 'window._wpemojiSettings = %s;', wp_json_encode( $settings ) ) . "\n" .
5804                file_get_contents( sprintf( ABSPATH . WPINC . '/js/wp-emoji-loader' . wp_scripts_get_suffix() . '.js' ) )
5805      );
5806 }
5807