Skip to content

Instantly share code, notes, and snippets.

View gregghenry's full-sized avatar

Gregg Henry gregghenry

View GitHub Profile
@gregghenry
gregghenry / functions.php
Last active February 1, 2023 15:37 — forked from karrikas/functions.php
Add bootstrap v5 responsive embed to wordpress automatic media embed and iframes
<?php
// Bootstrap 5 version of karrikas WP embed override.
add_filter('embed_oembed_html', 'my_embed_oembed_html', 10, 4);
function my_embed_oembed_html($html, $url, $attr, $post_ID) {
$newHtml = '<div class="ratio ratio-16x9">%s</iframe></div>';
return sprintf($newHtml, $html);
}
@gregghenry
gregghenry / set-featured-image.php
Created March 8, 2017 02:49 — forked from bueltge/set-featured-image.php
Set featureed image automaticly on save post/page