Tribe__Tickets__Attendee_Registration__Template::set_edit_post_link( string $link )
Hijack the edit post link for our fake page
Contents
Parameters
- $link
-
(string) (Required) The edit post link.
Return
(string) The edit post link or blank if on the AR page.
Source
File: src/Tribe/Attendee_Registration/Template.php
public function set_edit_post_link( $link ) {
// Bail if we're not on the attendee info page
if ( ! $this->is_on_ar_page() ) {
return $link;
}
return '';
}
Changelog
| Version | Description |
|---|---|
| 4.9 | Introduced. |