Skip to content

Instantly share code, notes, and snippets.

@Otto42
Otto42 / instagram-embed.php
Last active December 22, 2015 16:49
Instagram embed override code for WordPress, to use the embed iframe instead of Instagram's own oEmbed API endpoint.
<?php
/*
Plugin Name: Instagram Frame Embedder
Author: Otto
*/
wp_embed_register_handler( 'instagram', '#https?://instagr(\.am|am\.com)/p/([^/]+)#i', 'custom_embed_handler_instagram' );
function custom_embed_handler_instagram( $matches, $attr, $url, $rawattr ) {
if ( !empty($rawattr['width']) && !empty($rawattr['height']) ) {
@Otto42
Otto42 / gist:5854277
Last active December 18, 2015 22:28
WordPress embed handler for shows from cbs.com
<?php
function cbscom_embed_register_handler() {
wp_embed_register_handler( 'cbscom', '|https?://www.cbs.com/shows/.*|i', 'cbscom_embed_handler' );
}
add_action( 'init', 'cbscom_embed_register_handler' );
function cbscom_embed_handler( $matches, $attr, $url, $rawattr ) {
global $post, $wp_embed;
@Otto42
Otto42 / gist:5853020
Created June 24, 2013 19:54
mlb.tv embed code for a WordPress plugin
<?php
function mlbtv_embed_register_handler() {
wp_embed_register_handler( 'mlbtv', '|https?://wapc.mlb.com/play/\?content_id=([0-9]*)?#?|i', 'mlbtv_embed_handler' );
}
add_action( 'init', 'mlbtv_embed_register_handler' );
function mlbtv_embed_handler( $matches, $attr, $url, $rawattr ) {
if ( !empty($rawattr['width']) && !empty($rawattr['height']) ) {
@Otto42
Otto42 / spamcrap.txt
Created April 26, 2013 13:33
Somewhat more complete version of a spam template
{
{I have|I’ve} been {surfing|browsing} online more than {three|3|2|4} hours today, yet I never found any interesting article like yours. {It’s|It is} pretty worth enough for me.
{In my opinion|Personally|In my view}, if all {webmasters|site owners|website owners|web owners} and bloggers made good content as you did, the
{internet|net|web} will be {much more|a lot more} useful than ever before.
|
I {couldn’t|could not} {resist|refrain from} commenting. {Very well|Perfectly|Well|Exceptionally well} written!|
{I will|I’ll} {right away|immediately} {take hold
of|grab|clutch|grasp|seize|snatch} your {rss|rss feed} as I {can not|can’t} {in finding|find|to find} your {email|e-mail} subscription {link|hyperlink} or {newsletter|e-newsletter} service. Do {you have|you’ve} any?
{Please|Kindly} {allow|permit|let} me {realize|recognize|understand|recognise|know} {so that|in order that} I {may just|may|could} subscribe.
@Otto42
Otto42 / allow-private-parents.php
Last active April 6, 2022 02:21
Allow Private Pages to be parents of other pages
<?php
/*
Plugin Name: Allow Private Parents
Author: Otto
Author URI: http://ottopress.com
*/
add_filter('page_attributes_dropdown_pages_args', 'allow_private_page_parents');
function allow_private_page_parents($args) {
$args['post_status'] = array( 'publish', 'private' );