Views exposed filter. Добавляем placeholder.
Для того чтобы добавить placeholder воспользуемся hook_form_alter(): function...
function your_module_preprocess_html(&$vas) { if (arg(0) == 'taxonomy' && arg(1) == 'term') { $term = taxonomy_term_load(arg(2)); $vas['classes_array'][] = 'vocabulary-' . strtolower($term->vocabulary_machine_name); } }