Skip to content

Instantly share code, notes, and snippets.

View ericrallen's full-sized avatar
🎮
https://blog.dvdagames.com

Eric Allen ericrallen

🎮
https://blog.dvdagames.com
View GitHub Profile
@r-a-y
r-a-y / shortcode.php
Created February 22, 2012 21:01
Check if a shortcode exists in WordPress
<?php
if ( ! function_exists( 'shortcode_exists' ) ) :
/**
* Check if a shortcode is registered in WordPress.
*
* Examples: shortcode_exists( 'caption' ) - will return true.
* shortcode_exists( 'blah' ) - will return false.
*/
function shortcode_exists( $shortcode = false ) {
global $shortcode_tags;