PodsField_Pick::data_months_of_year PHP Method

data_months_of_year() public method

Data callback for US States
Since: 2.3
public data_months_of_year ( string $name = null, string | array $value = null, array $options = null, array $pod = null, integer $id = null ) : array
$name string The name of the field
$value string | array The value of the field
$options array Field options
$pod array Pod data
$id integer Item ID
return array
    public function data_months_of_year($name = null, $value = null, $options = null, $pod = null, $id = null)
    {
        /**
         * @var WP_Locale
         */
        global $wp_locale;
        return $wp_locale->month;
    }