vafour / vafpress-framework

Wordpress theme options framework, check out the demo.
http://demo.vafpress.com/vafpress-framework
Other
240 stars 98 forks source link

Add support for HTML5 placeholder for types textbox and textarea #87

Open vladan-me opened 10 years ago

vladan-me commented 10 years ago

Nice feature would be to have option to add 'placeholder' attribute when using fields of type 'textbox' and 'textarea' Usage example:

array(
    'type' => 'textbox',
    'name' => 'email',
    'label' => T::__('Email'),
    'validation' => 'email',
    'placeholder' => 'your_email@example.com',
),