Created
November 30, 2023 12:14
-
-
Save alanef/bc2080b50f8ad6e9e1046131a3af063d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* Plugin Name: Snippets for accordions layout - custom */ | |
add_filter('wfea_layout_part_accordion_tab', function($text) { | |
return $text . ' | Click for timetables and bookings '; | |
}, 10,1); | |
add_filter('wfea_layout_part_organizer_name', function($text) { | |
return ''; | |
}, 10,1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment