Advertisement
verygoodplugins

Untitled

Dec 17th, 2019
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. function do_my_thing() {
  2.  
  3.     if ( is_singular() && get_post_type() == 'course' ) {
  4.  
  5.         // do course stuff
  6.  
  7.     }
  8.  
  9. }
  10.  
  11. add_action( 'init', 'do_my_thing' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement