Tribe__Tickets__Attendee_Registration__Template::override_genesis_archive( $unused_null, [type] $unused_setting )
Hooks into the genesis excerpt filter and forces it “off” on the AR page
Contents
Parameters
-
([string]) (Required) (null) $unused_null string for value
- $unused_setting
-
([type]) (Required)
Return
(string|null)
Source
File: src/Tribe/Attendee_Registration/Template.php
public function override_genesis_archive( $unused_null, $unused_setting ) {
// Bail if we're not on the attendee info page
if ( ! $this->is_on_ar_page() ) {
return null;
}
return 'full';
}