Created
October 20, 2021 13:46
-
-
Save mklasen/4b5669458e91d36e3b07fc6998457d9f to your computer and use it in GitHub Desktop.
Show a GIF after the content of a blog post in WordPress
This file contains hidden or 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
<?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