Title: [Plugin: Filterable jQuery Portfolio Plugin] Using in a template?
Last modified: August 20, 2016

---

# [Plugin: Filterable jQuery Portfolio Plugin] Using in a template?

 *  Resolved [dukeblogger](https://wordpress.org/support/users/dukeblogger/)
 * (@dukeblogger)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-filterable-jquery-portfolio-plugin-using-in-a-template/)
 * is there a way to use this plugin so that it will appear as my footer or on my
   homepage under my blog posts on the main page?
 * [http://wordpress.org/extend/plugins/nimble-portfolio/](http://wordpress.org/extend/plugins/nimble-portfolio/)

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

 *  Plugin Author [Nimble3](https://wordpress.org/support/users/nimble3/)
 * (@nimble3)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-filterable-jquery-portfolio-plugin-using-in-a-template/#post-3085192)
 * you can use do_shortcode() function for this.
 *  Thread Starter [dukeblogger](https://wordpress.org/support/users/dukeblogger/)
 * (@dukeblogger)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-filterable-jquery-portfolio-plugin-using-in-a-template/#post-3085302)
 * Do you have the correct code for this? my php skills are lacking.
 *  Plugin Author [Nimble3](https://wordpress.org/support/users/nimble3/)
 * (@nimble3)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-filterable-jquery-portfolio-plugin-using-in-a-template/#post-3085303)
 * just wait for another 30 minutes, we are making a function to make life easier
   for non-php guys 🙂
 *  Plugin Author [Nimble3](https://wordpress.org/support/users/nimble3/)
 * (@nimble3)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-filterable-jquery-portfolio-plugin-using-in-a-template/#post-3085304)
 * You can use
 *     ```
       <?php
       /* Suppotred by all versions - it will print out the portfolio content */
       if (function_exists('nimble_portfolio_show')) {
           nimble_portfolio_show();
       }
       ?>
       ```
   
 * OR
 *     ```
       <?php
       /* Suppotred from 1.2.1 - it will return portfolio content */
       if (function_exists('nimble_portfolio')) {
           echo nimble_portfolio();
       }
       ?>
       ```
   
 * Since there is only one template code, and its default too, you don’t need to
   pass template code in this function call.
 *  [thomas29](https://wordpress.org/support/users/thomas29/)
 * (@thomas29)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-filterable-jquery-portfolio-plugin-using-in-a-template/#post-3085356)
 * Hi,
 * I just used the function call above. Which works. However I get a php warning.
 * `Warning: Missing argument 1 for nimble_portfolio_show(), `
 * EDIT : by using `echo nimble_portfolio` and changing
 * `function nimble_portfolio($atts) {`
    to `function nimble_portfolio() { in numble-
   portfolio.php (line 143)
 * Then all works fine.

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

The topic ‘[Plugin: Filterable jQuery Portfolio Plugin] Using in a template?’ is
closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/nimble-portfolio_e1ebf4.svg)
 * [Wordpress Picture / Portfolio / Media Gallery](https://wordpress.org/plugins/nimble-portfolio/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/nimble-portfolio/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/nimble-portfolio/)
 * [Active Topics](https://wordpress.org/support/plugin/nimble-portfolio/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/nimble-portfolio/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/nimble-portfolio/reviews/)

 * 5 replies
 * 3 participants
 * Last reply from: [thomas29](https://wordpress.org/support/users/thomas29/)
 * Last activity: [13 years, 5 months ago](https://wordpress.org/support/topic/plugin-filterable-jquery-portfolio-plugin-using-in-a-template/#post-3085356)
 * Status: resolved