Last active
February 15, 2021 23:21
-
-
Save verygoodplugins/8aa81e4c7348ba1af0fb6399eafa8eaf to your computer and use it in GitHub Desktop.
Allow [wpf] shortcodes inside of eachother
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function wpf_alt_shortcode() { | |
if( ! is_admin() ) { | |
$wpf_shortcodes = new WPF_Shortcodes; | |
add_shortcode( 'wpf2', array( $wpf_shortcodes, 'shortcodes' ) ); | |
} | |
} | |
add_action('wp_loaded', 'wpf_alt_shortcode'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment