Fires when an attachment type can't be rendered in the edit form.
$post
Sortie :
@param WP_Post $post A post object.
// Ajouter une fonction au hook action 'wp_edit_form_attachment_display'
add_action('wp_edit_form_attachment_display', 'ma_fonction_personnalisee', 10, 1);
function ma_fonction_personnalisee($post) {
// Votre code ici
error_log('Hook wp_edit_form_attachment_display déclenché');
}
Chargement des actualités...