add_action( 'all_admin_notices', 'testing_admin_notice' );
function testing_admin_notice() {
echo '<div id="message" class="updated">';
echo '<xmp>$my_var: '. print_r( $my_var, true ) .'</xmp>';
echo '</div>';
}
The random technical musings of Justin Sternberg
add_action( 'all_admin_notices', 'testing_admin_notice' );
function testing_admin_notice() {
echo '<div id="message" class="updated">';
echo '<xmp>$my_var: '. print_r( $my_var, true ) .'</xmp>';
echo '</div>';
}