Browse: Home / Hooks /

ld_certificate_shortcode_cert_url

apply_filters( 'ld_certificate_shortcode_cert_url',  string $cert_url )

Filters ld_certificate shortcode certificate URL.


Description #


Parameters #

$cert_url

(string) URL for Certificate.


Source #

File: includes/shortcodes/ld_certificate.php


Examples #

Note: Extended code example below not guaranteed, you may need to consult with a developer

 <?php
/**
 * Example usage for ld_certificate_shortcode_cert_url filter.
 */
add_filter(
	'ld_certificate_shortcode_cert_url',
	function( $cert_url ) {
		// May add any custom logic using $cert_url.

		// Always return $cert_url.
		return $cert_url;
	}
);
 

Changelog #

Changelog
Version Description
3.1.4 Introduced.