apply_filters( 'ld_certificate_shortcode_values', array $atts )
Filters ld_certificate shortcode attributes.
Description #
Parameters #
- $atts
-
(array) An array of shortcode attributes.
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for ld_certificate_shortcode_values filter.
*/
add_filter(
'ld_certificate_shortcode_values',
function( $atts ) {
// May add any custom logic using $atts.
// Always return $atts.
return $atts;
}
);
Changelog #
| Version | Description |
|---|---|
| 3.1.4 | Introduced. |