WPAS_Tickets_List::add_ticket_id_title PHP Method

add_ticket_id_title() public method

Add ticket ID to the ticket title in admin list screen
Since: 3.3
public add_ticket_id_title ( string $title ) : string
$title string Original title
return string
    public function add_ticket_id_title($title)
    {
        global $pagenow;
        if ('edit.php' !== $pagenow || !isset($_GET['post_type']) || 'ticket' !== $_GET['post_type']) {
            return $title;
        }
        $id = get_the_ID();
        $title = "{$title} (#{$id})";
        return $title;
    }