Custom class for button to change grid/list style.
Parameters
- class – string with custom class.
Usage
<?php
function change_lgv_buttons_custom_class ( $class ) {
//your code here
return $class;
}
add_filter( 'lgv_buttons_custom_class', 'change_lgv_buttons_custom_class' );
?>