Skip to content

Instantly share code, notes, and snippets.

View rosswintle's full-sized avatar

Ross Wintle rosswintle

View GitHub Profile
@scottopolis
scottopolis / thumbnail-featured-url-wp-api.php
Last active April 10, 2016 20:17
Add post thumbnail (featured image) url to WP-API response
@johnbillion
johnbillion / wp_mail.md
Last active January 27, 2024 14:06
WordPress Emails

WordPress Emails

This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.

This documentation has moved here: https://github.com/johnbillion/wp_mail

<?php
/**
* Duplicate 'the_content' filters
*
* @author Bill Erickson
* @link http://www.billerickson.net/code/duplicate-the_content-filters/
*/
global $wp_embed;
add_filter( 'ea_the_content', array( $wp_embed, 'run_shortcode' ), 8 );