lfbp

Forum Replies Created

Viewing 1 post (of 1 total)
Feb 10, 2014 at 5:19 pm
#12120
Member
lfbp
OP

It seems silly not to use the bootstrap classes. I’ve used the download_link filter to achieve what I need by adding this simple function.

function change_button_class( $text ) {
return str_replace(‘[btnclass]’, ‘btn btn-primary btn-large’, $text);
}
add_filter( ‘download_link’, ‘change_button_class’ );

Viewing 1 post (of 1 total)