Last active
March 30, 2023 20:51
-
-
Save fernandovbs/79186d210ee7409e8b6b834174bf5d5a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function add_audima_script() { | |
wp_enqueue_script( 'audima-script', 'https://audio.audima.co/audima-widget.js', false ); | |
} | |
add_action( 'wp_enqueue_scripts', 'add_audima_script' ); | |
function audima_the_content( $content ) { | |
$custom_content = '<div id="audimaWidget"></div>'; | |
$custom_content .= $content; | |
return $custom_content; | |
} | |
add_filter( 'the_content', 'audima_the_content' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment