{% macro input(label, name, value = "", type = "text", options = {}) %} {% set class = "" %} {% set input_class = "" %} {% if options.class is defined %} {% set class = options.class %} {% endif %} {% if options.input_class is defined %} {% set input_class = options.input_class %} {% endif %}
{% if label %} {% endif %} {% if options.help_text is defined %} {{ options.help_text }} {% endif %}
{% endmacro %} {% macro select(label, name, options, selected, selectOptions = {}) %}
{% if label %} {% endif %} {% if selectOptions.help_text is defined %} {{ selectOptions.help_text }} {% endif %}
{% endmacro %} {% macro checkbox(label, name, checked, options = {}) %}
{% if label %} {% endif %} {% if options.help_text is defined %} {{ options.help_text }} {% endif %}
{% endmacro %} {% macro submit(label, options = {}) %}{% endmacro %} {% macro csrf_nonce() %} {{ fn('wp_nonce_field') }} {% endmacro %}