apply_filters( 'learndash_no_price_price_label' )
NOTICE: This code is currently under development and may not be stable.
Contents
Description #
Its functionality, behavior, and interfaces may change at any time without notice. Please refrain from using it in production or other critical systems. By using this code, you assume all risks and liabilities associated with its use. Thank you for your understanding and cooperation.
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php /** * Example usage for learndash_no_price_price_label filter. */ add_filter( 'learndash_no_price_price_label', function( $label ) { // May add any custom logic using $label. // Always return $label. return $label; } );