18 lines
576 B
PHP
18 lines
576 B
PHP
<?php
|
|
|
|
|
|
function handle_posts_numerotation_remapping_on_save()
|
|
{
|
|
$post_type = get_post_type();
|
|
|
|
$numerotated_post_types = array('analyses-etudes', 'expositions', 'outils-pedagogiques', 'recherches');
|
|
// Ne s'exécuter que dans l'admin pour éviter de surcharger le frontend
|
|
if (!is_admin() || !in_array($post_type, $numerotated_post_types)) {
|
|
return;
|
|
}
|
|
handle_posts_numerotation_remapping($post_type);
|
|
}
|
|
|
|
add_action('save_post', 'handle_posts_numerotation_remapping_on_save');
|
|
add_action('delete_post', 'handle_posts_numerotation_remapping_on_save');
|