Title: style to include shortcode use?
Last modified: August 30, 2016

---

# style to include shortcode use?

 *  Resolved [majecdad](https://wordpress.org/support/users/majecdad/)
 * (@majecdad)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/style-to-include-shortcode-use/)
 * Hey Robin,
 * I just came across this plugin. It has several components that I had to dig around
   the internet to find and place as raw code. Nice. Would have been good to have
   found this before. 🙂
 * Like for example your option for Add Forum Description. I’m using some raw code
   I found (probably from you on bbpress.org) 🙂 to do this, but I’m curious if 
   your plugin can overcome one issue I have been struggling with related to that.
 * I want to use shortcode, specifically from something like Global Contest Blocks
   or Text Blocks, to place content in that forum description area.
 * Is there anything in your plugin which will help me do that?
 * Or if not, can you point me in a direction of some code that I might add that
   would?
 * Thanks!
 * [https://wordpress.org/plugins/bbp-style-pack/](https://wordpress.org/plugins/bbp-style-pack/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Robin W](https://wordpress.org/support/users/robin-w/)
 * (@robin-w)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/style-to-include-shortcode-use/#post-6336823)
 * Hi,
 * You can add stuff before or after the text using something like
 *     ```
       add_action ( 'bbp_theme_before_reply_content', 'rew_content') ;
       add_action  ('bbp_theme_after_reply_content', 'rew_content' ) ;
   
       function rew_content() {
       echo '<p>hello</p>' ;
       echo do_shortcode('[gallery]');
       }
       ```
   
 * If you are code savvy, then the above should be enough for you to work it out,
   but if not, then please do come back and let me know how much help you need.

Viewing 1 replies (of 1 total)

The topic ‘style to include shortcode use?’ is closed to new replies.

 * ![](https://ps.w.org/bbp-style-pack/assets/icon-256x256.jpg?rev=2706563)
 * [bbp style pack](https://wordpress.org/plugins/bbp-style-pack/)
 * [Support Threads](https://wordpress.org/support/plugin/bbp-style-pack/)
 * [Active Topics](https://wordpress.org/support/plugin/bbp-style-pack/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bbp-style-pack/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bbp-style-pack/reviews/)

## Tags

 * [description](https://wordpress.org/support/topic-tag/description/)
 * [shortcode](https://wordpress.org/support/topic-tag/shortcode/)

 * 1 reply
 * 2 participants
 * Last reply from: [Robin W](https://wordpress.org/support/users/robin-w/)
 * Last activity: [10 years, 9 months ago](https://wordpress.org/support/topic/style-to-include-shortcode-use/#post-6336823)
 * Status: resolved