J'écris un plugin qui pourrait imprimer un avis, mais uniquement sur la page média. J'ai trouvé les actions admin_notices
et all_admin_notices
, mais elles sont déclenchées sur toutes les pages d'administration. Existe-t-il un moyen de trouver quelle page d'administration le hook est appelé depuis le rappel?
Il existe une variable globale appelée $ pagenow à utiliser dans WP Admin:
global $pagenow;
if ( $pagenow == 'upload.php' ) :
function custom_admin_notice() {
echo '<div class="updated"><p>Updated!</p></div>';
}
add_action( 'admin_notices', 'custom_admin_notice' );
endif;
MISE À JOUR: Il suffit d'inclure l'extrait de code dans vos thèmes ou plugins functions.php
Une autre méthode consiste à utiliser le load-{$page}
hook.
Exemple:
add_action('load-edit.php', 'maybe_edit_notice'); // only on edit.php paged
function maybe_edit_notice() {
// some example notices based on the get variables
// the url should be something htt://example.com/wp-admin/edit.php?done=1&error=1
if ( isset($_GET['done']) ) {
$message = isset($_GET['error']) ? 'There was an error.' : 'Everithing ok.';
$class = isset($_GET['error']) ? 'error' : 'updated';
global $my_notice_args;
$my_notice_args = compact('message', 'class');
add_action('admin_notices', 'print_my_notice');
}
}
function print_my_notice() {
global $my_notice_args;
if ( ! empty($my_notice_args) ) {
printf('<div class="%s"><p>%s</p></div>', $my_args_notice['class'], $my_args_notice['message']);
}
}
Voir Documents de hook 'admin_notices' sur le Codex