";
}
return '';
}
add_shortcode( 'agenda_doveballiamo', 'agenda_doveballiamo' );
function agenda_db_attivazione() {
update_option( 'agenda_db_installato', 1 );
}
register_activation_hook( __FILE__, 'agenda_db_attivazione' );
function agenda_db_notifica(){
if ( current_user_can( 'install_plugins' ) && get_option( 'agenda_db_installato' ) ) {
echo '';
delete_option( 'agenda_db_installato' );
}
}
add_action('admin_notices', 'agenda_db_notifica');