wp_prototype_before_jquery [ WordPress Function ]
wp_prototype_before_jquery ( $js_array )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Benzer Fonksiyonlar: wp_reset_query, wp_post_mime_type_where, wp_edit_posts_query, get_post_type_object, the_search_query
Reorder JavaScript scripts array to place prototype before jQuery.
Source
<?php
function wp_prototype_before_jquery( $js_array ) {
if ( false === $jquery = array_search( 'jquery', $js_array, true ) )
return $js_array;
if ( false === $prototype = array_search( 'prototype', $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;
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- wp_prototype_before_jquery() WordPress function reference ...
Reorder JavaScript scripts array to place prototype before jQuery.
queryposts.com - <?php /** * WordPress scripts and styles default loader. * * Most of ...
@since 2.3.1 * * @param array $js_array JavaScript scripst array * @return array Reordered array, if needed. */ function wp_prototype_before_jquery( $js_array ) ...
core.svn.wordpress.org - PHPXref.com - WordPress 3.0.1 - Detail view of script-loader.php
Aug 19, 2010 ... wp_prototype_before_jquery() wp_just_in_time_script_localization() wp_style_loader_src() print_head_scripts() print_footer_scripts() ...
phpxref.com - <?php /* Plugin Name: Twitter Tools Plugin URI: http://alexking.org ...
twitter-tools/twitter-tools.php'); } if (!function_exists('wp_prototype_before_jquery')) { function wp_prototype_before_jquery( $js_array ) { if ( false === $jquery ...
svn.wp-plugins.org