Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. if ( empty( $tagnames ) ) {
  2. return $content;
  3. }
  4.  
  5. // line 196 --v
  6. $content = do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames );
  7.  
  8. function first_shortcode() {
  9. $content = '<h1>This is my first shortcode</h1>';
  10. return $content;
  11. }
  12. add_shortcode('my_shortcode', 'first_shortcode');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement