Skip to content

Instantly share code, notes, and snippets.

@Ataurr
Created May 3, 2016 10:07
Show Gist options
  • Save Ataurr/523cc34c1a329a09ff3eaaa92d2caedf to your computer and use it in GitHub Desktop.
Save Ataurr/523cc34c1a329a09ff3eaaa92d2caedf to your computer and use it in GitHub Desktop.
function filter_caldera_forms_get_form_templates($tmpl) {
$tmpl = array(
'starter_contact_form' => array(
'name' => __('Starter Contact Forms', 'caldera-forms'),
'template' => include CFCORE_PATH . 'includes/templates/starter-contact-form.php'
),
);
return $tmpl;
};
add_filter('caldera_forms_get_form_templates', 'filter_caldera_forms_get_form_templates', 10, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment