File: /var/www/sites/u-port.ua/wp-content/themes/customize/customize/functions.php
<?php
show_admin_bar(false);
// disable default emoji script
remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
remove_action( 'wp_print_styles', 'print_emoji_styles' );
remove_action( 'admin_print_styles', 'print_emoji_styles' );
// Disable WP jquery and using local jquery and set into the footer
function my_init() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', get_bloginfo('template_url') . '/js/jquery.min.js', false, '2.1.4', true);
wp_enqueue_script('jquery');
}
}
add_action('init', 'my_init');
// disable links in head
add_theme_support('post-thumbnails');
add_filter('the_generator', create_function('', 'return "";'));
remove_action('wp_head', 'rsd_link');
remove_action('wp_head', 'wlwmanifest_link');
register_nav_menus( array( // Регистрируем 2 меню
'top' => 'Верхнее меню',
'left' => 'Нижнее'
) );