apply_filters( 'learndash_status_bubble', string $bubble, string $status )
Filters item status bubble markup.
Contents
Description #
Parameters #
- $bubble
-
(string) Status bubble markup.
- $status
-
(string) The current item status
Source #
Examples #
<?php /** * Example usage for learndash_status_bubble filter. */ add_filter( 'learndash_status_bubble', function( $bubble, $status ) { // May add any custom logic using $bubble, $status. // Always return $bubble. return $bubble; }, 10, 2 );