Wordpress Admin Script Snippet
// # Admin Script Snippet
//---------------------------------------------
// Hide the Responsive Video Embedder Pro message
function custom_admin_js() {
echo "<script type=\"text/javascript\">
jQuery(document).ready(function ($) {
$('.updated p').each(function(){
text = $(this).text();
index = text.indexOf('Video Embedder');
if ( index > -1 ){
$(this).parent().hide();
}
});
});
</script>";
wp_register_script( 'admin-script', get_stylesheet_directory_uri() . '/js/min/admin-min.js', array('jquery'), '1.0', true );
wp_enqueue_script( 'admin-script' );
}
add_action('admin_footer', 'custom_admin_js');