23 lines
737 B
PHP
23 lines
737 B
PHP
<?php
|
|
|
|
/* ---------------------------
|
|
EDIT ARTISAN LINK
|
|
---------------------------*/
|
|
|
|
add_action('acf/render_field', function ($field) {
|
|
// Vérifiez si le champ est celui que vous voulez personnaliser
|
|
if ($field['key'] === 'field_6719065f58122') {
|
|
if (did_action('acf/render_field/key=field_6719065f58122') % 2 === 0) {
|
|
return;
|
|
}
|
|
$field['rendered'] = true;
|
|
|
|
$linked_post_id = get_field($field['key']);
|
|
|
|
if ($linked_post_id) {
|
|
$edit_link = get_edit_post_link($linked_post_id);
|
|
echo '<a href="' . esc_url($edit_link) . '" class="edit-fiche-artisan-link"><img src=' . get_stylesheet_directory_uri() . '/resources/img/icons/tools.svg' . ' /> Voir la fiche de l\'artisan </a>';
|
|
}
|
|
}
|
|
}, 10, 1);
|