Skip to content

Instantly share code, notes, and snippets.

@mklasen
Created October 20, 2021 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mklasen/4b5669458e91d36e3b07fc6998457d9f to your computer and use it in GitHub Desktop.
Save mklasen/4b5669458e91d36e3b07fc6998457d9f to your computer and use it in GitHub Desktop.
Show a GIF after the content of a blog post in WordPress
<?php
add_filter('the_content', 'show_a_gif');
function show_a_gif($content) {
$content .= '<iframe src="https://giphy.com/embed/jTqfCm1C0BV5fFAYvT" width="480" height="480" frameBorder="0" class="giphy-embed" allowFullScreen></iframe><p><a href="https://giphy.com/gifs/wordpressdotcom-diversity-wordpress-radiate-jTqfCm1C0BV5fFAYvT">via GIPHY</a></p>';
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment