_x('Offline', 'post'), 'public' => true, 'exclude_from_search' => false, 'show_in_admin_all_list' => true, 'show_in_admin_status_list' => true, 'label_count' => _n_noop('Unread (%s)', 'Unread (%s)'), )); } add_action('init', 'metiers_patrimoine_custom_post_status'); function metiers_patrimoine_add_to_post_status_dropdown() { global $post; // if ($post->post_type != 'pdf_order') // return false; $status = ($post->post_statu == 'offline') ? "jQuery( '#post-status-display' ).text( 'Offline' ); jQuery( 'select[name=\"post_status\"]' ).val('completed');" : ''; echo ""; } add_action('post_submitbox_misc_actions', 'metiers_patrimoine_add_to_post_status_dropdown'); add_action('edit_form_after_title', function () { // Vérifie si on est sur le bon post type $screen = get_current_screen(); if ($screen && $screen->post_type === 'artisans') { // Remplacez 'votre_cpt' par le slug de votre CPT echo '

' . get_the_title() . '

'; } });