Created
April 24, 2017 06:53
-
-
Save svenl77/8439c696e34f16a0edc37c4a41ded84c to your computer and use it in GitHub Desktop.
Register new Loop Templates
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 | |
add_filter( 'buddyforms_loop_template_name', 'my_buddyforms_loop_template_name' ); | |
function my_buddyforms_loop_template_name($templates){ | |
$templates['new-template'] = 'New Template'; | |
return $templates; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment