remove_menu('comments'); } add_action('wp_before_admin_bar_render', 'mytheme_admin_bar_render'); /* ----------------------------------------------------------------------------- ##### MODIFIER LE LIEN DU LOGO SUR LA BLADE DE CONNEXION À L'INTERFACE ADMIN -------------------------------------------------------------------------------*/ function change_login_logo_url($url) { return site_url(); } add_filter('login_headerurl', 'change_login_logo_url'); /* ---------------------------------------------------------------------- ##### ENQUEUE DU CSS BLADE LOGIN ADMIN ------------------------------------------------------------------------*/ function enqueue_custom_login_stylesheet() { wp_enqueue_style('custom-login', get_stylesheet_directory_uri() . '/style-login.css'); } add_action('login_enqueue_scripts', 'enqueue_custom_login_stylesheet'); /* ---------------------------------------------------------------------- PASSER LES COULEURS DU THEMES AU COLOR PICKER ACF ------------------------------------------------------------------------*/ function change_acf_input_colors() { ?>