array( 'name' => __( "Listings", 'ccat' ), 'menu_name' => __( "Listings", 'ccat' ), 'singular_name' => __( "Listing", 'ccat' ), 'add_new' => __( "Add New", 'ccat' ), 'add_new_item' => __( "Add New Listing", 'ccat' ), 'new_item' => __( "New Listing", 'ccat' ), 'edit_item' => __( "Edit Listing", 'ccat' ), 'view_item' => __( "View Listing", 'ccat' ), 'view_items' => __( "View Listings", 'ccat' ), 'search_items' => __( "Search Listings", 'ccat' ), 'not_found' => __( "No Listings found", 'ccat' ), 'not_found_in_trash' => __( "No Listings found in trash", 'ccat' ), 'parent_item_colon' => __( "Parent Listing:", 'ccat' ), 'all_items' => __( "All Listings", 'ccat' ), 'archives' => __( "Listing Archives", 'ccat' ), 'attributes' => __( "Listing Attributes", 'ccat' ), 'insert_into_item' => __( "Insert into Listing", 'ccat' ), 'uploaded_to_this_item' => __( "Uploaded to this Listing", 'ccat' ), 'featured_image' => __( "Featured Image", 'ccat' ), 'set_featured_image' => __( "Set featured image", 'ccat' ), 'remove_featured_image' => __( "Remove featured image", 'ccat' ), 'use_featured_image' => __( "Use as featured image", 'ccat' ), 'filter_items_list' => __( "Filter Listings list", 'ccat' ), 'items_list_navigation' => __( "Listings list navigation", 'ccat' ), 'items_list' => __( "Listings list", 'ccat' ), 'item_published' => __( "Listing published.", 'ccat' ), 'item_published_privately' => __( "Listing published privately.", 'ccat' ), 'item_reverted_to_draft' => __( "Listing reverted to draft.", 'ccat' ), 'item_scheduled' => __( "Listing scheduled.", 'ccat' ), 'item_updated' => __( "Listing updated.", 'ccat' ), ), 'public' => true, 'hierarchical' => false, 'show_ui' => true, 'show_in_nav_menus' => false, 'supports' => array( 'title', 'author', 'revisions' ), 'has_archive' => false, 'rewrite' => array( 'slug' => 'annonce', 'with_front' => false, ), 'query_var' => true, 'menu_icon' => 'dashicons-sticky', 'show_in_rest' => true, 'rest_base' => 'listing', 'rest_controller_class' => 'WP_REST_Posts_Controller', 'show_in_graphql' => true, 'graphql_single_name' => "Listing", 'graphql_plural_name' => "Listings", 'graphql_interfaces' => array( 'Node' ), ) ); } // Custom 'listing' post updated messages add_filter( 'post_updated_messages', 'ccat_listing_post_updated_messages' ); function ccat_listing_post_updated_messages( $messages ) { global $post; $permalink = get_permalink( $post ); $preview_post_link_html = sprintf( ' %2$s', esc_url( get_preview_post_link( $post ) ), __( "Preview Listing", 'ccat' ) ); $scheduled_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "Preview Listing", 'ccat' ) ); $scheduled_date = date_i18n( __( "M j, Y @ H:i", 'ccat' ), strtotime( $post->post_date ) ); $view_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "View Listing", 'ccat' ) ); $messages['listing'] = array( 0 => '', 1 => __( "Listing updated.", 'ccat' ) . $view_post_link_html, 2 => __( "Custom field updated.", 'ccat' ), 3 => __( "Custom field deleted.", 'ccat' ), 4 => __( "Listing updated.", 'ccat' ), 5 => isset( $_GET['revision'] ) ? sprintf( __( "Listing restored to revision from %s", 'ccat' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, 6 => __( "Listing published.", 'ccat' ) . $view_post_link_html, 7 => __( "Listing saved.", 'ccat' ), 8 => __( "Listing submitted.", 'ccat' ) . $preview_post_link_html, 9 => sprintf( __( 'Listing scheduled for: %s.' ), '' . $scheduled_date . '' ) . $scheduled_post_link_html, 10 => __( 'Listing draft updated.' ) . $preview_post_link_html, ); return $messages; }