SlideShare a Scribd company logo
1 of 82
<?php
$fields = get_post_custom();
if (isset($fields['gallery'])) {
   $images = split(',',$fields['gallery'][0]);
   $current = ($paged == '') ? 1 : $paged;
   $image = $images[$current-1];
?>
<div id="gallery">
   <img src="<?php echo $image; ?>" alt="<?php echo "Image $current of
".count($images); ?>" />
   <?php
   if (count($images) > 1) {
   ?>
   <ul>
       <?php if ($current > 1) { ?><li class="prev"><a href="<?php
the_permalink() ?>page/<?php echo $current-1; ?>">Previous
Image</a></li><?php } ?>
       <?php if ($current < count($images)) { ?><li class="next"><a
href="<?php the_permalink() ?>page/<?php echo $current+1; ?>">Next
Image</a></li><?php } ?>
   </ul>
   <?php } ?>
</div>
<?php } ?>
<?php
function get_work(
   $exclude=null,
   $limit=-1,
   $parent=3,
   $args = array('orderby'=>'menu_order',
'order'=>'ASC', 'post_type'=>'page')
) {
   $args['numberposts'] = $limit;
   if ($exclude) { $args['exclude'] = $exclude; }
   if ($parent) { $args['post_parent'] = $parent; }
   return get_posts($args);
}
?>
<?php
function list_work($exclude=null, $limit=-1, $parent=3, $args =
array('orderby'=>'menu_order', 'order'=>'ASC', 'post_type'=>'page')) {
   $work = get_work($exclude,$limit,$parent,$args);
   if ($work) : ?>
   <ul>
       <?php
       foreach ($work as $item) :
       $fields = get_post_custom($item->ID);
       ?>
       <li><a href="<?php echo get_permalink($item->ID) ?>">
          <img src="<?php echo $fields['tn'][0] ?>" alt="" />
          <?php echo apply_filters('the_title',$item->post_title); ?>
       </a></li>
       <?php endforeach; ?>
   </ul>
   <?php
   else : ?>
   <p>Our apologies, but we have yet to add any examples of our work.
Check back soon!</p>
   <?php endif;
} ?>
@EricCurtis
@meldel_pdx
@swestbrook
Slides and code snippets are posted at http://sticka.us/wcpdx09

I converse and emote on Twitter as @tylersticka

My blog and portfolio are at http://tylersticka.com

More Related Content

What's hot

HTML::FormHandler
HTML::FormHandlerHTML::FormHandler
HTML::FormHandlerbbeeley
 
#wpbar 26/3 - Förenkla WP-admin
#wpbar 26/3 - Förenkla WP-admin#wpbar 26/3 - Förenkla WP-admin
#wpbar 26/3 - Förenkla WP-adminOlaf Lindström
 
Shortcodes In-Depth
Shortcodes In-DepthShortcodes In-Depth
Shortcodes In-DepthMicah Wood
 
Massive device deployment - EclipseCon 2011
Massive device deployment - EclipseCon 2011Massive device deployment - EclipseCon 2011
Massive device deployment - EclipseCon 2011Angelo van der Sijpt
 
You're Doing it Wrong - WordCamp Atlanta
You're Doing it Wrong - WordCamp AtlantaYou're Doing it Wrong - WordCamp Atlanta
You're Doing it Wrong - WordCamp AtlantaChris Scott
 
PHPUnit with Mocking and Crawling
PHPUnit with Mocking and CrawlingPHPUnit with Mocking and Crawling
PHPUnit with Mocking and CrawlingTrung x
 
jQuery Foot-Gun Features
jQuery Foot-Gun FeaturesjQuery Foot-Gun Features
jQuery Foot-Gun Featuresdmethvin
 
Make your own wp cli command in 10min
Make your own wp cli command in 10minMake your own wp cli command in 10min
Make your own wp cli command in 10minIvelina Dimova
 
WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016
WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016
WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016Jesper van Engelen
 
Evolving systems and the link to service orientation
Evolving systems and the link to service orientationEvolving systems and the link to service orientation
Evolving systems and the link to service orientationAngelo van der Sijpt
 
Pemrograman Web 8 - MySQL
Pemrograman Web 8 - MySQLPemrograman Web 8 - MySQL
Pemrograman Web 8 - MySQLNur Fadli Utomo
 
Incremental Type Safety in React Apollo
Incremental Type Safety in React Apollo Incremental Type Safety in React Apollo
Incremental Type Safety in React Apollo Evans Hauser
 
How I started to love design patterns
How I started to love design patternsHow I started to love design patterns
How I started to love design patternsSamuel ROZE
 
jQuery and Rails, Sitting in a Tree
jQuery and Rails, Sitting in a TreejQuery and Rails, Sitting in a Tree
jQuery and Rails, Sitting in a Treeadamlogic
 
持续集成中心:新时代的软件研发管理体系
持续集成中心:新时代的软件研发管理体系持续集成中心:新时代的软件研发管理体系
持续集成中心:新时代的软件研发管理体系gigix1980
 
Introduction to CQRS and Event Sourcing
Introduction to CQRS and Event SourcingIntroduction to CQRS and Event Sourcing
Introduction to CQRS and Event SourcingSamuel ROZE
 

What's hot (20)

HTML::FormHandler
HTML::FormHandlerHTML::FormHandler
HTML::FormHandler
 
Device deployment
Device deploymentDevice deployment
Device deployment
 
#wpbar 26/3 - Förenkla WP-admin
#wpbar 26/3 - Förenkla WP-admin#wpbar 26/3 - Förenkla WP-admin
#wpbar 26/3 - Förenkla WP-admin
 
Rails by example
Rails by exampleRails by example
Rails by example
 
Shortcodes In-Depth
Shortcodes In-DepthShortcodes In-Depth
Shortcodes In-Depth
 
Massive device deployment - EclipseCon 2011
Massive device deployment - EclipseCon 2011Massive device deployment - EclipseCon 2011
Massive device deployment - EclipseCon 2011
 
You're Doing it Wrong - WordCamp Atlanta
You're Doing it Wrong - WordCamp AtlantaYou're Doing it Wrong - WordCamp Atlanta
You're Doing it Wrong - WordCamp Atlanta
 
PHPUnit with Mocking and Crawling
PHPUnit with Mocking and CrawlingPHPUnit with Mocking and Crawling
PHPUnit with Mocking and Crawling
 
jQuery Foot-Gun Features
jQuery Foot-Gun FeaturesjQuery Foot-Gun Features
jQuery Foot-Gun Features
 
Make your own wp cli command in 10min
Make your own wp cli command in 10minMake your own wp cli command in 10min
Make your own wp cli command in 10min
 
WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016
WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016
WordCamp Geneva Presentation - Customising WordPress' Admin Panel - 19 Nov. 2016
 
Evolving systems and the link to service orientation
Evolving systems and the link to service orientationEvolving systems and the link to service orientation
Evolving systems and the link to service orientation
 
Pemrograman Web 8 - MySQL
Pemrograman Web 8 - MySQLPemrograman Web 8 - MySQL
Pemrograman Web 8 - MySQL
 
Incremental Type Safety in React Apollo
Incremental Type Safety in React Apollo Incremental Type Safety in React Apollo
Incremental Type Safety in React Apollo
 
How I started to love design patterns
How I started to love design patternsHow I started to love design patterns
How I started to love design patterns
 
jQuery and Rails, Sitting in a Tree
jQuery and Rails, Sitting in a TreejQuery and Rails, Sitting in a Tree
jQuery and Rails, Sitting in a Tree
 
J querypractice
J querypracticeJ querypractice
J querypractice
 
持续集成中心:新时代的软件研发管理体系
持续集成中心:新时代的软件研发管理体系持续集成中心:新时代的软件研发管理体系
持续集成中心:新时代的软件研发管理体系
 
Introduction to CQRS and Event Sourcing
Introduction to CQRS and Event SourcingIntroduction to CQRS and Event Sourcing
Introduction to CQRS and Event Sourcing
 
Views notwithstanding
Views notwithstandingViews notwithstanding
Views notwithstanding
 

Viewers also liked

Business rules management: wijzigingen in de praktijk
Business rules management: wijzigingen in de praktijkBusiness rules management: wijzigingen in de praktijk
Business rules management: wijzigingen in de praktijkKoen Smit
 
Principled performance
Principled performancePrincipled performance
Principled performanceKoen Smit
 
Revision 1
Revision 1Revision 1
Revision 1cindi25
 
Business rules: What changes occur in practice?
Business rules: What changes occur in practice?Business rules: What changes occur in practice?
Business rules: What changes occur in practice?Koen Smit
 
Seven business models for Decision Management
Seven business models for Decision ManagementSeven business models for Decision Management
Seven business models for Decision ManagementKoen Smit
 
Editable Powerpoint Office schedule template - wide screen
Editable Powerpoint Office schedule template - wide screenEditable Powerpoint Office schedule template - wide screen
Editable Powerpoint Office schedule template - wide screenOffice Timeline
 

Viewers also liked (11)

Business rules management: wijzigingen in de praktijk
Business rules management: wijzigingen in de praktijkBusiness rules management: wijzigingen in de praktijk
Business rules management: wijzigingen in de praktijk
 
Li - Fi The Future Technology
Li - Fi  The Future TechnologyLi - Fi  The Future Technology
Li - Fi The Future Technology
 
MLO CARD
MLO CARDMLO CARD
MLO CARD
 
Principled performance
Principled performancePrincipled performance
Principled performance
 
Supply quotation
Supply quotationSupply quotation
Supply quotation
 
Revision 1
Revision 1Revision 1
Revision 1
 
Business rules: What changes occur in practice?
Business rules: What changes occur in practice?Business rules: What changes occur in practice?
Business rules: What changes occur in practice?
 
Seven business models for Decision Management
Seven business models for Decision ManagementSeven business models for Decision Management
Seven business models for Decision Management
 
Li-Fi technology
Li-Fi technologyLi-Fi technology
Li-Fi technology
 
Editable Powerpoint Office schedule template - wide screen
Editable Powerpoint Office schedule template - wide screenEditable Powerpoint Office schedule template - wide screen
Editable Powerpoint Office schedule template - wide screen
 
Produktkatalog von Hirnböck Stabau
Produktkatalog von Hirnböck StabauProduktkatalog von Hirnböck Stabau
Produktkatalog von Hirnböck Stabau
 

Similar to WordPress-Powered Portfolios

Grok Drupal (7) Theming
Grok Drupal (7) ThemingGrok Drupal (7) Theming
Grok Drupal (7) ThemingPINGV
 
Yearning jQuery
Yearning jQueryYearning jQuery
Yearning jQueryRemy Sharp
 
You're Doing it Wrong - WordCamp Orlando
You're Doing it Wrong - WordCamp OrlandoYou're Doing it Wrong - WordCamp Orlando
You're Doing it Wrong - WordCamp OrlandoChris Scott
 
Nickolay Shmalenuk.Render api eng.DrupalCamp Kyiv 2011
Nickolay Shmalenuk.Render api eng.DrupalCamp Kyiv 2011Nickolay Shmalenuk.Render api eng.DrupalCamp Kyiv 2011
Nickolay Shmalenuk.Render api eng.DrupalCamp Kyiv 2011camp_drupal_ua
 
Developing applications for performance
Developing applications for performanceDeveloping applications for performance
Developing applications for performanceLeon Fayer
 
Dutch PHP Conference - PHPSpec 2 - The only Design Tool you need
Dutch PHP Conference - PHPSpec 2 - The only Design Tool you needDutch PHP Conference - PHPSpec 2 - The only Design Tool you need
Dutch PHP Conference - PHPSpec 2 - The only Design Tool you needKacper Gunia
 
PHPSpec - the only Design Tool you need - 4Developers
PHPSpec - the only Design Tool you need - 4DevelopersPHPSpec - the only Design Tool you need - 4Developers
PHPSpec - the only Design Tool you need - 4DevelopersKacper Gunia
 
Drupal Development (Part 2)
Drupal Development (Part 2)Drupal Development (Part 2)
Drupal Development (Part 2)Jeff Eaton
 
WordPress Security - WordCamp Phoenix
WordPress Security - WordCamp PhoenixWordPress Security - WordCamp Phoenix
WordPress Security - WordCamp PhoenixMark Jaquith
 
8時間耐久CakePHP2 勉強会
8時間耐久CakePHP2 勉強会8時間耐久CakePHP2 勉強会
8時間耐久CakePHP2 勉強会Yusuke Ando
 
Why Hacking WordPress Search Isn't Some Big Scary Thing
Why Hacking WordPress Search Isn't Some Big Scary ThingWhy Hacking WordPress Search Isn't Some Big Scary Thing
Why Hacking WordPress Search Isn't Some Big Scary ThingChris Reynolds
 
Gail villanueva add muscle to your wordpress site
Gail villanueva   add muscle to your wordpress siteGail villanueva   add muscle to your wordpress site
Gail villanueva add muscle to your wordpress sitereferences
 

Similar to WordPress-Powered Portfolios (20)

Grok Drupal (7) Theming
Grok Drupal (7) ThemingGrok Drupal (7) Theming
Grok Drupal (7) Theming
 
Daily notes
Daily notesDaily notes
Daily notes
 
Lithium Best
Lithium Best Lithium Best
Lithium Best
 
Yearning jQuery
Yearning jQueryYearning jQuery
Yearning jQuery
 
Wp query
Wp queryWp query
Wp query
 
Php
PhpPhp
Php
 
You're Doing it Wrong - WordCamp Orlando
You're Doing it Wrong - WordCamp OrlandoYou're Doing it Wrong - WordCamp Orlando
You're Doing it Wrong - WordCamp Orlando
 
Nickolay Shmalenuk.Render api eng.DrupalCamp Kyiv 2011
Nickolay Shmalenuk.Render api eng.DrupalCamp Kyiv 2011Nickolay Shmalenuk.Render api eng.DrupalCamp Kyiv 2011
Nickolay Shmalenuk.Render api eng.DrupalCamp Kyiv 2011
 
Developing applications for performance
Developing applications for performanceDeveloping applications for performance
Developing applications for performance
 
Dutch PHP Conference - PHPSpec 2 - The only Design Tool you need
Dutch PHP Conference - PHPSpec 2 - The only Design Tool you needDutch PHP Conference - PHPSpec 2 - The only Design Tool you need
Dutch PHP Conference - PHPSpec 2 - The only Design Tool you need
 
PHPSpec - the only Design Tool you need - 4Developers
PHPSpec - the only Design Tool you need - 4DevelopersPHPSpec - the only Design Tool you need - 4Developers
PHPSpec - the only Design Tool you need - 4Developers
 
Smarty
SmartySmarty
Smarty
 
Separation of concerns - DPC12
Separation of concerns - DPC12Separation of concerns - DPC12
Separation of concerns - DPC12
 
Drupal Development (Part 2)
Drupal Development (Part 2)Drupal Development (Part 2)
Drupal Development (Part 2)
 
WordPress Security - WordCamp Phoenix
WordPress Security - WordCamp PhoenixWordPress Security - WordCamp Phoenix
WordPress Security - WordCamp Phoenix
 
8時間耐久CakePHP2 勉強会
8時間耐久CakePHP2 勉強会8時間耐久CakePHP2 勉強会
8時間耐久CakePHP2 勉強会
 
画像Hacks
画像Hacks画像Hacks
画像Hacks
 
Why Hacking WordPress Search Isn't Some Big Scary Thing
Why Hacking WordPress Search Isn't Some Big Scary ThingWhy Hacking WordPress Search Isn't Some Big Scary Thing
Why Hacking WordPress Search Isn't Some Big Scary Thing
 
Gail villanueva add muscle to your wordpress site
Gail villanueva   add muscle to your wordpress siteGail villanueva   add muscle to your wordpress site
Gail villanueva add muscle to your wordpress site
 
20110820 header new style
20110820 header new style20110820 header new style
20110820 header new style
 

More from Tyler Sticka

GO! How two guys made an iPhone game (and lived to tell the tale)
GO! How two guys made an iPhone game (and lived to tell the tale)GO! How two guys made an iPhone game (and lived to tell the tale)
GO! How two guys made an iPhone game (and lived to tell the tale)Tyler Sticka
 
The Uncanny Valley of Interaction Design
The Uncanny Valley of Interaction DesignThe Uncanny Valley of Interaction Design
The Uncanny Valley of Interaction DesignTyler Sticka
 
WDIM268 Week 6 (Summer 2010)
WDIM268 Week 6 (Summer 2010)WDIM268 Week 6 (Summer 2010)
WDIM268 Week 6 (Summer 2010)Tyler Sticka
 
WDIM268 Week 2 (Summer 2010)
WDIM268 Week 2 (Summer 2010)WDIM268 Week 2 (Summer 2010)
WDIM268 Week 2 (Summer 2010)Tyler Sticka
 
WDIM268 Week 1 (Summer 2010)
WDIM268 Week 1 (Summer 2010)WDIM268 Week 1 (Summer 2010)
WDIM268 Week 1 (Summer 2010)Tyler Sticka
 
WDIM268 Week 7 (Summer 2009)
WDIM268 Week 7 (Summer 2009)WDIM268 Week 7 (Summer 2009)
WDIM268 Week 7 (Summer 2009)Tyler Sticka
 
WDIM268 Week 4 (Summer 2009)
WDIM268 Week 4 (Summer 2009)WDIM268 Week 4 (Summer 2009)
WDIM268 Week 4 (Summer 2009)Tyler Sticka
 
WDIM268 Week 3 (Summer 2009)
WDIM268 Week 3 (Summer 2009)WDIM268 Week 3 (Summer 2009)
WDIM268 Week 3 (Summer 2009)Tyler Sticka
 
WDIM268 Week 2 (Summer 2009)
WDIM268 Week 2 (Summer 2009)WDIM268 Week 2 (Summer 2009)
WDIM268 Week 2 (Summer 2009)Tyler Sticka
 
WDIM268 Week 1 (Summer 2009)
WDIM268 Week 1 (Summer 2009)WDIM268 Week 1 (Summer 2009)
WDIM268 Week 1 (Summer 2009)Tyler Sticka
 
Graphic Storytelling in New Media
Graphic Storytelling in New MediaGraphic Storytelling in New Media
Graphic Storytelling in New MediaTyler Sticka
 

More from Tyler Sticka (11)

GO! How two guys made an iPhone game (and lived to tell the tale)
GO! How two guys made an iPhone game (and lived to tell the tale)GO! How two guys made an iPhone game (and lived to tell the tale)
GO! How two guys made an iPhone game (and lived to tell the tale)
 
The Uncanny Valley of Interaction Design
The Uncanny Valley of Interaction DesignThe Uncanny Valley of Interaction Design
The Uncanny Valley of Interaction Design
 
WDIM268 Week 6 (Summer 2010)
WDIM268 Week 6 (Summer 2010)WDIM268 Week 6 (Summer 2010)
WDIM268 Week 6 (Summer 2010)
 
WDIM268 Week 2 (Summer 2010)
WDIM268 Week 2 (Summer 2010)WDIM268 Week 2 (Summer 2010)
WDIM268 Week 2 (Summer 2010)
 
WDIM268 Week 1 (Summer 2010)
WDIM268 Week 1 (Summer 2010)WDIM268 Week 1 (Summer 2010)
WDIM268 Week 1 (Summer 2010)
 
WDIM268 Week 7 (Summer 2009)
WDIM268 Week 7 (Summer 2009)WDIM268 Week 7 (Summer 2009)
WDIM268 Week 7 (Summer 2009)
 
WDIM268 Week 4 (Summer 2009)
WDIM268 Week 4 (Summer 2009)WDIM268 Week 4 (Summer 2009)
WDIM268 Week 4 (Summer 2009)
 
WDIM268 Week 3 (Summer 2009)
WDIM268 Week 3 (Summer 2009)WDIM268 Week 3 (Summer 2009)
WDIM268 Week 3 (Summer 2009)
 
WDIM268 Week 2 (Summer 2009)
WDIM268 Week 2 (Summer 2009)WDIM268 Week 2 (Summer 2009)
WDIM268 Week 2 (Summer 2009)
 
WDIM268 Week 1 (Summer 2009)
WDIM268 Week 1 (Summer 2009)WDIM268 Week 1 (Summer 2009)
WDIM268 Week 1 (Summer 2009)
 
Graphic Storytelling in New Media
Graphic Storytelling in New MediaGraphic Storytelling in New Media
Graphic Storytelling in New Media
 

Recently uploaded

Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 

Recently uploaded (20)

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 

WordPress-Powered Portfolios

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61. <?php $fields = get_post_custom(); if (isset($fields['gallery'])) { $images = split(',',$fields['gallery'][0]); $current = ($paged == '') ? 1 : $paged; $image = $images[$current-1]; ?> <div id="gallery"> <img src="<?php echo $image; ?>" alt="<?php echo "Image $current of ".count($images); ?>" /> <?php if (count($images) > 1) { ?> <ul> <?php if ($current > 1) { ?><li class="prev"><a href="<?php the_permalink() ?>page/<?php echo $current-1; ?>">Previous Image</a></li><?php } ?> <?php if ($current < count($images)) { ?><li class="next"><a href="<?php the_permalink() ?>page/<?php echo $current+1; ?>">Next Image</a></li><?php } ?> </ul> <?php } ?> </div> <?php } ?>
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67. <?php function get_work( $exclude=null, $limit=-1, $parent=3, $args = array('orderby'=>'menu_order', 'order'=>'ASC', 'post_type'=>'page') ) { $args['numberposts'] = $limit; if ($exclude) { $args['exclude'] = $exclude; } if ($parent) { $args['post_parent'] = $parent; } return get_posts($args); } ?>
  • 68. <?php function list_work($exclude=null, $limit=-1, $parent=3, $args = array('orderby'=>'menu_order', 'order'=>'ASC', 'post_type'=>'page')) { $work = get_work($exclude,$limit,$parent,$args); if ($work) : ?> <ul> <?php foreach ($work as $item) : $fields = get_post_custom($item->ID); ?> <li><a href="<?php echo get_permalink($item->ID) ?>"> <img src="<?php echo $fields['tn'][0] ?>" alt="" /> <?php echo apply_filters('the_title',$item->post_title); ?> </a></li> <?php endforeach; ?> </ul> <?php else : ?> <p>Our apologies, but we have yet to add any examples of our work. Check back soon!</p> <?php endif; } ?>
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82. Slides and code snippets are posted at http://sticka.us/wcpdx09 I converse and emote on Twitter as @tylersticka My blog and portfolio are at http://tylersticka.com