Posted By

tylersticka on 08/30/09


Tagged

wordpress wordcamp portland


Versions (?)


Advertising

Website Promotion DIRECTORY is a crucial factor for all websites that need to gain better organic search engine rankings and increase website traffic.
Submitting your website as part of your Web Promotion strategy to our SEO friendly and high traffic Business Directory for review is an excellent way to gain a valuable backlink and increase your websites visibility online.

Submit Site


WordPress-Powered Portfolios: get_work()


Published in: PHP 






URL: http://tylersticka.com/2009/09/wcpdx09/

For use in the theme functions template, functions.php.

Expand | Embed | Plain Text
  1. <?php
  2. // http://tylersticka.com/2009/09/wcpdx09/
  3. // Function retrieve a set of portfolio items
  4. function get_work(
  5. // Specify a portfolio item ID to exclude from results,
  6. // useful if displaying a list of other items in an item page
  7. $exclude=null,
  8. // The number of portfolio items to return to
  9. // (Returns all by default)
  10. $limit=-1,
  11. // The ID of the "master" portfolio page. To streamline use
  12. // of the function, change the default of this to whatever
  13. // the ID of the portfolio page is
  14. $parent=3,
  15. // Advanced arguments if you wish to make other adjustments
  16. $args = array('orderby'=>'menu_order','order'=>'ASC','post_type'=>'page')
  17. ) {
  18. // Add arguments to query when applicable
  19. $args['numberposts'] = $limit;
  20. if ($exclude) { $args['exclude'] = $exclude; }
  21. if ($parent) { $args['post_parent'] = $parent; }
  22.  
  23. // Fetch and return WordPress posts matching query
  24. return get_posts($args);
  25. }
  26. ?>

Report this snippet 

You need to login to post a comment.

Download royalty free graphics