[ create a new paste ] login | about

Link: http://codepad.org/BQZ4UpO0    [ raw code | fork ]

PHP, pasted on Aug 3:
1
2
3
4
5
6
7
8
function my_notice() {				
	global $pagenow;
		
	if($pagenow == 'themes.php'){
			echo '<div class="notice notice-success is-dismissible"><p>This is my notice!</p></div>';			
	}
}
add_action( 'admin_notices', 'my_notice' );


Create a new paste based on this one


Comments: