Skip to content

Instantly share code, notes, and snippets.

@bappi-d-great
bappi-d-great / code.php
Last active March 26, 2018 10:48
Forminator: Date field - drop down/input type - follow the date format to show the fields
<?php
add_filter( 'forminator_field_date_markup', function( $html, $field ) {
$id = $name = Forminator_Date::get_property( 'element_id', $field );
$type = Forminator_Date::get_property( 'field_type', $field );
$date_format = Forminator_Date::get_property( 'date_format', $field );
$min_year = $max_year = '';
$sep = false !== strpos( $date_format, '/' ) ? '/' : '-';