Guest User

Untitled

a guest
May 16th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. my_premium_shortcodes(); // Fires early in my php file
  2.  
  3. function my_premium_shortcodes(){
  4. $status = get_option( 'key_status' );
  5.  
  6. if( $status !== false && $status == 'valid' ) {
  7.  
  8. add_shortcode('shortcode_handle_1','shortcode_function_1');
  9. add_shortcode('shortcode_handle_2','shortcode_function_2');
  10.  
  11. } else {
  12.  
  13. remove_shortcode('shortcode_handle_1','shortcode_function_1');
  14. remove_shortcode('shortcode_handle_2','shortcode_function_2');
  15. }
  16.  
  17. }
Add Comment
Please, Sign In to add comment