Advertisement
bastetmilo

Shortcode after content

Jun 4th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. add_filter( 'the_content', 'bm_shortcode_after_content' );
  2.  
  3. function bm_shortcode_after_content( $content ) {
  4.     if ( is_singular('cpt_franchize')) {
  5.         $shortcode = '[contact-form-7 id="364" title="Formularz 1"]'
  6.         $content = $content . do_shortcode($shortcode);
  7.         }
  8.     return $content;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement