Guest User

Untitled

a guest
Jan 23rd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. `add_shortcode('my_shortcode_str', 'my_shortcode_fx');
  2.  
  3. function my_shortcode_fx() {
  4. if (is_page()) {
  5. /* only render on front-end, otherwise kills lazy load of page parent field in WP edit screen */
  6. $content = /*something*/;
  7. return $content;
  8. } // ends is_page
  9. }
  10. `
Add Comment
Please, Sign In to add comment