Title: Embed shortcode in PHP template
Last modified: August 22, 2016

---

# Embed shortcode in PHP template

 *  Resolved [pixelparadies](https://wordpress.org/support/users/pixelparadies/)
 * (@pixelparadies)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/embed-shortcode-in-php-template/)
 * Hi!
 * Is it possible to get the plugin working in a php-template? I tried to put a 
   filter in the accordion using do_shortcode but its not working properly.
 * Regards
 * [https://wordpress.org/plugins/accordion-shortcodes/](https://wordpress.org/plugins/accordion-shortcodes/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [philbuchanan](https://wordpress.org/support/users/philbuchanan/)
 * (@philbuchanan)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/embed-shortcode-in-php-template/#post-5817381)
 * You’ll want to call `do_shortcode()` once, on the completed string. Something
   like this should work:
 *     ```
       <?php
   
       $accordions = '[accordion]
       [accordion-item title="Title"]Content.[/accordion-item]
       [accordion-item title="Title"]Content.[/accordion-item]
       [/accordion]';
   
       echo do_shortcode($accordions);
   
       ?>
       ```
   
 *  Thread Starter [pixelparadies](https://wordpress.org/support/users/pixelparadies/)
 * (@pixelparadies)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/embed-shortcode-in-php-template/#post-5817403)
 * Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Embed shortcode in PHP template’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/accordion-shortcodes.svg)
 * [Accordion Shortcodes](https://wordpress.org/plugins/accordion-shortcodes/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/accordion-shortcodes/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/accordion-shortcodes/)
 * [Active Topics](https://wordpress.org/support/plugin/accordion-shortcodes/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/accordion-shortcodes/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/accordion-shortcodes/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [pixelparadies](https://wordpress.org/support/users/pixelparadies/)
 * Last activity: [11 years, 3 months ago](https://wordpress.org/support/topic/embed-shortcode-in-php-template/#post-5817403)
 * Status: resolved