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

The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
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
 
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
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 

Recently uploaded (20)

The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
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
 
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...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 

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