wp_prototype_before_jquery( array $js_array )

Reorder JavaScript scripts array to place prototype before jQuery.


Parameters

$js_array

(array) (Required) JavaScript scripts array


Return

(array) Reordered array, if needed.


Source

File: wp-includes/script-loader.php

function wp_prototype_before_jquery( $js_array ) {
	if ( false === $prototype = array_search( 'prototype', $js_array, true ) )
		return $js_array;

	if ( false === $jquery = array_search( 'jquery', $js_array, true ) )
		return $js_array;

	if ( $prototype < $jquery )
		return $js_array;

	unset($js_array[$prototype]);

	array_splice( $js_array, $jquery, 0, 'prototype' );

	return $js_array;
}

Changelog

Changelog
Version Description
WP-2.3.1 Introduced.