Voulez-vous afficher un message d’erreur personnalisé dans la page d’administration du thème ? Bien qu’il existe probablement un plugin pour cela, nous avons créé un extrait de code rapide que vous pouvez utiliser pour ajouter un message d’erreur personnalisé au panneau d’administration de WordPress.
Instructions:
Tout ce que vous avez à faire est d’ajouter ce code au fichier functions.php de votre thème ou dans un plugin spécifique à votre site:
add_action( 'admin_notices', 'custom_error_notice' ); function custom_error_notice(){ global $current_screen; if ( $current_screen->parent_base == 'themes' ) echo '<div class="error"><p>Warning - If you modify template files this could cause problems with your website.</p></div>'; }
Note : Si c’est la première fois que vous ajoutez des extraits de code dans WordPress, veuillez consulter notre guide sur la façon d’ajouter correctement des extraits de code dans WordPress, afin de ne pas casser accidentellement votre site.
Si vous avez aimé cet extrait de code, n’hésitez pas à consulter nos autres articles sur le site comme : 28 meilleurs thèmes de CV WordPress pour créer la meilleure impression.
Thanks. It really helps me…..
Cool Arif glad I could help.
How can you get this to display on the dashboard? I get get it to work on all the other menus such as tools, but not on the dashboard. Also, are there any other default WP classes I can use other than error?
You will notice on the line 04: $current_screen->parent_base == ‘themes’ you need to change the word themes to something else like “edit” etc. for development you can use this snippet to get the name of the current_screen.
add_action( ‘admin_notices’, ‘current_screen’ );
function current_screen() {
if( !is_admin() ) return;
global $current_screen;
print_r($current_screen->parent_base);
}
add this snippet to the functions.php of your wordpress theme and within the admin it will display the name you need to replace themes with. If you want the dashboard replace themes with index. Don’t forget to remove that snippet once done since you only need to it to get the parent_base. In regards to types of messages you can change class=”error” to updated.
That’s a great one, a lot of fun could be had with that 🙂
@elliottrichmond:disqus yes it is something you could use just as a message to display or tie it into a plugin etc. very useful.