Skip to content

Instantly share code, notes, and snippets.

@someguy9
Last active July 18, 2023 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save someguy9/aae2c710d83e241001b86139d5663135 to your computer and use it in GitHub Desktop.
Save someguy9/aae2c710d83e241001b86139d5663135 to your computer and use it in GitHub Desktop.
Check if a shortcode already exists in WordPress https://smartwp.com/check-if-shortcode-exists/
<?php
if ( shortcode_exists( 'image_gallery' ) ) {
echo 'The [image_gallery] shortcode already exists';
}
if ( !shortcode_exists( 'image_gallery' ) ) {
echo 'The [image_gallery] shortcode does not exist';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment