gppro_default_css_text_decorations
Add, change, or modify the available CSS decoration in the input type.
Current defaults
function my_css_decorations( $decorations) { $decorations = array( 'none' => __( 'None', 'my-text-domain' ), 'underline' => __( 'Underline', 'my-text-domain' ), 'overline' => __( 'Overline', 'my-text-domain' ), 'line-through' => __( 'Line Through', 'my-text-domain' ), ); return $decorations; } add_filters( 'gppro_default_css_text_decorations', 'my_css_decorations' );