Skip to content

Instantly share code, notes, and snippets.

@fernandovbs
Last active March 30, 2023 20:51
Show Gist options
  • Save fernandovbs/79186d210ee7409e8b6b834174bf5d5a to your computer and use it in GitHub Desktop.
Save fernandovbs/79186d210ee7409e8b6b834174bf5d5a to your computer and use it in GitHub Desktop.
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