Heads up!
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
Add a custom class to directory buttons to help them better match other buttons on the site.
Usage
add_filter( 'wpbdp_button_class', 'add_bd_button_class' );
Parameters
- $class (string) The classes to add. Defaults to ‘button'.
Examples
Match buttons in Astra
add_filter( 'wpbdp_button_class', 'add_bd_button_class' ); function add_bd_button_class( $class ) { $class .= ' ast-button'; return $class; }
Change Log
Added in version 6.3.4