Skip to content

Instantly share code, notes, and snippets.

View fernandotellado's full-sized avatar
🇪🇸
WordPressing

Fernando Tellado fernandotellado

🇪🇸
WordPressing
View GitHub Profile
Lwybase public gist profile
@fernandotellado
fernandotellado / gist-wordpress.php
Created July 2, 2012 16:04
Autoincrustado de gists en WordPress
<?php
//Autoincrustado desde github (pegar este código en el archivo functions.php o plugin de funciones)
wp_embed_register_handler( 'gist', '/https:\/\/gist\.github\.com\/(\d+)(\?file=.*)?/i', 'wp_embed_handler_gist' );
function wp_embed_handler_gist( $matches, $attr, $url, $rawattr ) {
$embed = sprintf(
'<script src="https://gist.github.com/%1$s.js%2$s"></script>',
esc_attr($matches[1]),
esc_attr($matches[2])