SlideShare a Scribd company logo
1 of 52
WORDPRESS FOR MOBILE
 USING WORDPRESS TO BUILD
 MOBILE-OPTIMISED WEBSITES

          Rachel McCollin
     WordCamp Portsmouth 2011


                          rachel@compass-design.co.uk
                                      @rachelmccollin
                            http://compass-design.co.uk
IN THIS SESSION

• why   go mobile?

• considerations

• methods   and examples

• some   code

• resources   and links
BEFORE WE START
WHY MOBILE?




source: http://www.digitalbuzzblog.com/2011-mobile-statistics-stats-facts-marketing-infographic/
WHY YOUR SITE?
HOW TO APPROACH


Bandwidth
             Objectives
                                    Time     Resources
     Users             The site
                                           You

Platform     Context              Design
                                                 Budget
THE OPTIONS




@med
MOBILE THEMES



• Instant                       • Limitedcontrol over user
                                  experience
• Very   quick and easy
                                • Need    to test thoroughly
• Consistencybetween
 desktop and mobile             • Less   individual design

• Browser   compatibility       • Limited   choice at present
Great for site owners who want to focus on content not code
           or don't have the necessary time or skills
MOBILE THEMES - EXAMPLES



                   responsive twenty ten
                   theme by Todd
                   Halfpenny




  http://gingerbreaddesign.co.uk/todd/
MOBILE THEMES - EXAMPLES




http://wordpress.org/extend/themes/twentyeleven#
MOBILE THEMES - EXAMPLES



                     Smooci mobile-only
                     theme




http://wordpress.org/extend/themes/smooci-2
MOBILE THEMES - EXAMPLES




    http://carringtontheme.com
MOBILE THEMES - EXAMPLES




    http://carringtontheme.com
MOBILE THEMES - EXAMPLES




http://www.mobilizetoday.com/wordpress-themes/mobius/
MOBILE THEMES - EXAMPLES




http://www.mobilizetoday.com/wordpress-themes/mobius/
MOBILE THEMES - EXAMPLES




      http://jigoshop.com/
MOBILE THEMES - EXAMPLES




      http://jigoshop.com/
MOBILE THEMES - EXAMPLES




 http://leonpaternoster.com/wp-themes/
MOBILE THEMES - EXAMPLES




 http://leonpaternoster.com/wp-themes/
PLUGINS



• Working   in minutes               • One    size fits all

• Minimal   configuration             • Less   control

• Cross-platform                     • Problems    with widgets &
                                      media
• No   coding required
                                     • Lose   branding/design
Great for simple text-focused sites and blogs where content is
      more important than design and budget is limited
PLUGINS - EXAMPLES
WP Touch - http://wordpress.org/extend/plugins/wptouch/
PLUGINS - EXAMPLES
WP Touch - http://wordpress.org/extend/plugins/wptouch/
PLUGINS - EXAMPLES
  WP Touch - http://wordpress.org/extend/plugins/wptouch/




http://www.socialmediaexaminer.com/
PLUGINS - EXAMPLES
  WP Touch - http://wordpress.org/extend/plugins/wptouch/




http://www.socialmediaexaminer.com/
PLUGINS - EXAMPLES
  WP Touch - http://wordpress.org/extend/plugins/wptouch/




http://www.socialmediaexaminer.com/
PLUGINS - EXAMPLES
  WP Touch - http://wordpress.org/extend/plugins/wptouch/




http://www.socialmediaexaminer.com/ http://www.stephenfry.com/
PLUGINS - EXAMPLES
                WordPress mobile pack




http://wordpress.org/extend/plugins/wordpress-mobile-pack/
PLUGINS - EXAMPLES
             BuddyPress mobile




http://buddypress.org/groups/buddypress-mobile/
OTHER PLUGINS
Mobilise by mippin - renders your site using their service
http://wordpress.org/extend/plugins/mobilize-by-mippin-
wordpress-plugin/

BAAP mobile version - switcher with configurable themes
http://wordpress.org/extend/plugins/baap-mobile-version/

Wapple architect - delivers a version of your theme to
mobiles - http://wordpress.org/extend/plugins/wapple-
architect/
MEDIA QUERIES



• Retain   existing design
                                    • Not reliable on all
• Can    be templated
                                     platforms (e.g.
• Very   flexible                     Blackberry)

                                    • More   resource-intensive
• Canadd or remove
 content, images, menus etc.
Great for sites where the design and brand are important and
      the user experience is similar to the desktop site.
MEDIA QUERIES -




http://compass-design.co.uk
MEDIA QUERIES -




http://compass-design.co.uk
MEDIA QUERIES -




http://centenarylounge.com
MEDIA QUERIES -




http://centenarylounge.com
MEDIA QUERIES -




http://retreats4geeks.com
MEDIA QUERIES -




http://retreats4geeks.com
MEDIA QUERIES - CODE
in the <head>: <meta name="viewport" content="width=device-width">



at the end of the stylesheet:

@media screen and (max-width: 480px) { [styles] } - iPhone and Android in portrait & landscape

@media screen and (max-width: 320px) - iPhone and Android in portrait only

@media screen and (min-width: 768px) and (max-width: 1024px) - iPad in portrait and landscape

@media screen and (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) - iPad in
landscape

@media screen and (min-width: 481px) and (max-width: 1024px) and (orientation: portrait) - iPad in portrait



Notes:

•   iPad queries can also work on small desktop browser screens

•   style wider screens first unless using (min-width)
MEDIA QUERIES - USEFUL CSS


display: none;

img {max-width: 100%;}

float: none;

width: 100%;
BESPOKE MOBILE SITES



• Mobile-specific    experience       • Needs   a clear strategy

• Make    use of APIs                • More   resource-intensive

• Looks   great                      • one   site or two?

• Plugins   can make it easier       • one   theme or two?

Great for sites which will be used very differently by mobile
    users and have a user base who are big app users
BESPOKE MOBILE SITES -

WpTap mobile detector - spots mobiles & enables the
theme you choose - http://wordpress.org/extend/plugins/
wptap-mobile-detector/

WPTouch Pro - http://www.bravenewcode.com/store/
plugins/wptouch-pro/

WordPress mobile pack - http://wordpress.org/extend/
plugins/wordpress-mobile-pack/
BESPOKE MOBILE SITES -




http://www.telegraph.co.uk/comment/blogs
BESPOKE MOBILE SITES -




http://www.telegraph.co.uk/comment/blogs
BESPOKE MOBILE SITES -




      http://theaa.com
BESPOKE MOBILE SITES -




      http://theaa.com
BESPOKE MOBILE SITES -




     http://expedia.co.uk
BESPOKE MOBILE SITES -




     http://expedia.co.uk
BESPOKE MOBILE SITES -




    http://tripadvisor.co.uk
BESPOKE MOBILE SITES -




    http://tripadvisor.co.uk
BESPOKE MOBILE SITES -




      http://bbc.co.uk
BESPOKE MOBILE SITES -




      http://bbc.co.uk
IN CONCLUSION
Define:

• Who    your audience or target audience is

• What    platforms and devices they use

• What    you want them to use your site for

• How    the user expectations will differ on a mobile

• What    your content is

• What    budget, resources and time you have

• Which    method you will use

• How    you will monitor use and conversions
LINKS AND RESOURCES
http://www.alistapart.com/articles/responsive-web-design/

http://coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/

http://zomigi.com/blog/essential-resources-for-creating-liquid-and-elastic-layouts/

http://www.smashingmagazine.com/2011/07/11/picking-a-mobile-support-strategy-for-
your-website/

Responsive Web Design by Ethan Marcotte

Flexible Web Design and Stunning CSS3 by Zoe Mickley
Gillenwater

http://compass-design.co.uk/blog/wordpress-for-mobile

@rachelmccollin

More Related Content

What's hot

PSEWEB 2013 - Make it responsive - TERMINALFOUR
PSEWEB 2013 - Make it responsive - TERMINALFOURPSEWEB 2013 - Make it responsive - TERMINALFOUR
PSEWEB 2013 - Make it responsive - TERMINALFOURTerminalfour
 
Meagan Fisher - FOWD London 2009
Meagan Fisher - FOWD London 2009Meagan Fisher - FOWD London 2009
Meagan Fisher - FOWD London 2009Carsonified Team
 
Mobile Web - Merging responsive and adaptive techniques
Mobile Web - Merging responsive and adaptive techniquesMobile Web - Merging responsive and adaptive techniques
Mobile Web - Merging responsive and adaptive techniquesFrancisco Ferreira
 
Weiss in Singapore on Mobile 2.0 & UX Trends 2009
Weiss in Singapore on Mobile 2.0 & UX Trends 2009Weiss in Singapore on Mobile 2.0 & UX Trends 2009
Weiss in Singapore on Mobile 2.0 & UX Trends 2009Scott Weiss
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web DesignJulia Vi
 
Development and collaboration tools (1)
Development and collaboration tools (1)Development and collaboration tools (1)
Development and collaboration tools (1)Alba Amador
 
Mobile App Development and Xamarin as a Complete Mobile Solution
Mobile App Development and Xamarin as a Complete Mobile SolutionMobile App Development and Xamarin as a Complete Mobile Solution
Mobile App Development and Xamarin as a Complete Mobile SolutionMukteswar Patnaik
 
Responsive Web Design - Advantages and Best Practice for Sports Direct
Responsive Web Design - Advantages and Best Practice for Sports DirectResponsive Web Design - Advantages and Best Practice for Sports Direct
Responsive Web Design - Advantages and Best Practice for Sports DirectCantarus
 
Responsive Web Design: Advantages & Best Practice - Darrin Adams, Cantarus
Responsive Web Design: Advantages & Best Practice - Darrin Adams, CantarusResponsive Web Design: Advantages & Best Practice - Darrin Adams, Cantarus
Responsive Web Design: Advantages & Best Practice - Darrin Adams, CantarusInternet World
 
Tim Ash - Mobile Conversion Strategy
Tim Ash - Mobile Conversion StrategyTim Ash - Mobile Conversion Strategy
Tim Ash - Mobile Conversion StrategyINBOUND
 
Planning Your Progressive Web App
Planning Your Progressive Web AppPlanning Your Progressive Web App
Planning Your Progressive Web AppJason Grigsby
 
WDS UXP Mobile Web May 2008
WDS UXP Mobile Web May 2008WDS UXP Mobile Web May 2008
WDS UXP Mobile Web May 2008Oliver Weidlich
 
UX design for every screen
UX design for every screenUX design for every screen
UX design for every screenFour Kitchens
 
Your Mobile Strategy Can't Be HTML5
Your Mobile Strategy Can't Be HTML5Your Mobile Strategy Can't Be HTML5
Your Mobile Strategy Can't Be HTML5Theresa Neil
 
UX Design for the Responsive Web - UX London 2014 Workshop
UX Design for the Responsive Web - UX London 2014 WorkshopUX Design for the Responsive Web - UX London 2014 Workshop
UX Design for the Responsive Web - UX London 2014 WorkshopMatt Gibson
 
Designer vs Developer: BE THE UNICORN
Designer vs Developer: BE THE UNICORNDesigner vs Developer: BE THE UNICORN
Designer vs Developer: BE THE UNICORNSara Cannon
 

What's hot (20)

Responsive web design
Responsive web designResponsive web design
Responsive web design
 
PSEWEB 2013 - Make it responsive - TERMINALFOUR
PSEWEB 2013 - Make it responsive - TERMINALFOURPSEWEB 2013 - Make it responsive - TERMINALFOUR
PSEWEB 2013 - Make it responsive - TERMINALFOUR
 
Meagan Fisher - FOWD London 2009
Meagan Fisher - FOWD London 2009Meagan Fisher - FOWD London 2009
Meagan Fisher - FOWD London 2009
 
Mobile Web - Merging responsive and adaptive techniques
Mobile Web - Merging responsive and adaptive techniquesMobile Web - Merging responsive and adaptive techniques
Mobile Web - Merging responsive and adaptive techniques
 
Weiss in Singapore on Mobile 2.0 & UX Trends 2009
Weiss in Singapore on Mobile 2.0 & UX Trends 2009Weiss in Singapore on Mobile 2.0 & UX Trends 2009
Weiss in Singapore on Mobile 2.0 & UX Trends 2009
 
Web Design And Development
Web Design And DevelopmentWeb Design And Development
Web Design And Development
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Development and collaboration tools (1)
Development and collaboration tools (1)Development and collaboration tools (1)
Development and collaboration tools (1)
 
Mobile App Development and Xamarin as a Complete Mobile Solution
Mobile App Development and Xamarin as a Complete Mobile SolutionMobile App Development and Xamarin as a Complete Mobile Solution
Mobile App Development and Xamarin as a Complete Mobile Solution
 
Responsive Web Design - Advantages and Best Practice for Sports Direct
Responsive Web Design - Advantages and Best Practice for Sports DirectResponsive Web Design - Advantages and Best Practice for Sports Direct
Responsive Web Design - Advantages and Best Practice for Sports Direct
 
Responsive Web Design: Advantages & Best Practice - Darrin Adams, Cantarus
Responsive Web Design: Advantages & Best Practice - Darrin Adams, CantarusResponsive Web Design: Advantages & Best Practice - Darrin Adams, Cantarus
Responsive Web Design: Advantages & Best Practice - Darrin Adams, Cantarus
 
Tim Ash - Mobile Conversion Strategy
Tim Ash - Mobile Conversion StrategyTim Ash - Mobile Conversion Strategy
Tim Ash - Mobile Conversion Strategy
 
Planning Your Progressive Web App
Planning Your Progressive Web AppPlanning Your Progressive Web App
Planning Your Progressive Web App
 
Media product pitch rb
Media product pitch rbMedia product pitch rb
Media product pitch rb
 
WDS UXP Mobile Web May 2008
WDS UXP Mobile Web May 2008WDS UXP Mobile Web May 2008
WDS UXP Mobile Web May 2008
 
UX design for every screen
UX design for every screenUX design for every screen
UX design for every screen
 
Your Mobile Strategy Can't Be HTML5
Your Mobile Strategy Can't Be HTML5Your Mobile Strategy Can't Be HTML5
Your Mobile Strategy Can't Be HTML5
 
UX Design for the Responsive Web - UX London 2014 Workshop
UX Design for the Responsive Web - UX London 2014 WorkshopUX Design for the Responsive Web - UX London 2014 Workshop
UX Design for the Responsive Web - UX London 2014 Workshop
 
Designer vs Developer: BE THE UNICORN
Designer vs Developer: BE THE UNICORNDesigner vs Developer: BE THE UNICORN
Designer vs Developer: BE THE UNICORN
 
Wine: M-Sites Versus Apps.
Wine: M-Sites Versus Apps.Wine: M-Sites Versus Apps.
Wine: M-Sites Versus Apps.
 

Viewers also liked

Amigonaotemdefeito 1
Amigonaotemdefeito 1Amigonaotemdefeito 1
Amigonaotemdefeito 1Nádia Souza
 
RDV TIC en partenariat avec Google
RDV TIC en partenariat avec GoogleRDV TIC en partenariat avec Google
RDV TIC en partenariat avec GoogleCOMPETITIC
 
Mountaineering edition 7
Mountaineering edition 7Mountaineering edition 7
Mountaineering edition 7Zidaru Andreea
 
Samaras petros draseis toy gpa
Samaras petros draseis toy gpaSamaras petros draseis toy gpa
Samaras petros draseis toy gpapraktiki_espa
 
Educación en siglo XXI
Educación en siglo XXIEducación en siglo XXI
Educación en siglo XXIbetgit
 
Interactieve gevel 2
Interactieve gevel 2Interactieve gevel 2
Interactieve gevel 2Lise93
 
factory Identification
factory Identificationfactory Identification
factory Identificationsaeid teymoori
 
Perú y la economía global
Perú y la economía globalPerú y la economía global
Perú y la economía globalKAtiRojChu
 
Somatic Experiencing - Savera Noriega (TouchStudio) op CoachCafé Gent
Somatic Experiencing - Savera Noriega (TouchStudio) op CoachCafé GentSomatic Experiencing - Savera Noriega (TouchStudio) op CoachCafé Gent
Somatic Experiencing - Savera Noriega (TouchStudio) op CoachCafé GentYourCoach BVBA
 
Истинските решения - Вили Лилков
Истинските решения - Вили ЛилковИстинските решения - Вили Лилков
Истинските решения - Вили ЛилковDancho10
 

Viewers also liked (18)

バズる技術
バズる技術バズる技術
バズる技術
 
Amigonaotemdefeito 1
Amigonaotemdefeito 1Amigonaotemdefeito 1
Amigonaotemdefeito 1
 
Conservación de la energía
Conservación de la energíaConservación de la energía
Conservación de la energía
 
RDV TIC en partenariat avec Google
RDV TIC en partenariat avec GoogleRDV TIC en partenariat avec Google
RDV TIC en partenariat avec Google
 
41
4141
41
 
Educate 009
Educate 009Educate 009
Educate 009
 
16
1616
16
 
Mountaineering edition 7
Mountaineering edition 7Mountaineering edition 7
Mountaineering edition 7
 
Samaras petros draseis toy gpa
Samaras petros draseis toy gpaSamaras petros draseis toy gpa
Samaras petros draseis toy gpa
 
Educación en siglo XXI
Educación en siglo XXIEducación en siglo XXI
Educación en siglo XXI
 
Interactieve gevel 2
Interactieve gevel 2Interactieve gevel 2
Interactieve gevel 2
 
factory Identification
factory Identificationfactory Identification
factory Identification
 
Gt
GtGt
Gt
 
Anbefaling S360
Anbefaling S360Anbefaling S360
Anbefaling S360
 
Perú y la economía global
Perú y la economía globalPerú y la economía global
Perú y la economía global
 
SAE Aero Design Final Report
SAE Aero Design Final ReportSAE Aero Design Final Report
SAE Aero Design Final Report
 
Somatic Experiencing - Savera Noriega (TouchStudio) op CoachCafé Gent
Somatic Experiencing - Savera Noriega (TouchStudio) op CoachCafé GentSomatic Experiencing - Savera Noriega (TouchStudio) op CoachCafé Gent
Somatic Experiencing - Savera Noriega (TouchStudio) op CoachCafé Gent
 
Истинските решения - Вили Лилков
Истинските решения - Вили ЛилковИстинските решения - Вили Лилков
Истинските решения - Вили Лилков
 

Similar to WordPress for mobile

Responsive Vs Mobile Development in Magento - Kimberly Thomas - @MagentoGirl
Responsive Vs Mobile Development in Magento - Kimberly Thomas - @MagentoGirlResponsive Vs Mobile Development in Magento - Kimberly Thomas - @MagentoGirl
Responsive Vs Mobile Development in Magento - Kimberly Thomas - @MagentoGirlMeet Magento Spain
 
Responsive Web Design_2013
Responsive Web Design_2013Responsive Web Design_2013
Responsive Web Design_2013Achieve Internet
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web DesignMelanie Burger
 
Building Responsive Websites with Drupal
Building Responsive Websites with DrupalBuilding Responsive Websites with Drupal
Building Responsive Websites with DrupalSuzanne Dergacheva
 
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012Suzanne Dergacheva
 
Workshop 11: Trendy web designs & prototyping
Workshop 11: Trendy web designs & prototypingWorkshop 11: Trendy web designs & prototyping
Workshop 11: Trendy web designs & prototypingVisual Engineering
 
Progressively Enhancing WordPress Themes
Progressively Enhancing WordPress ThemesProgressively Enhancing WordPress Themes
Progressively Enhancing WordPress ThemesDigitally
 
Web designtrends 5-29-2013
Web designtrends 5-29-2013Web designtrends 5-29-2013
Web designtrends 5-29-2013Angela Bowman
 
Module 08: Responsive Web Design
Module 08: Responsive Web DesignModule 08: Responsive Web Design
Module 08: Responsive Web DesignDaniel Drew Turner
 
Responsive Design: What is it? How do we do it? How much will it cost?
Responsive Design: What is it? How do we do it? How much will it cost?Responsive Design: What is it? How do we do it? How much will it cost?
Responsive Design: What is it? How do we do it? How much will it cost?Karin Tracy
 
Responsivedesign 7-3-2012
Responsivedesign 7-3-2012Responsivedesign 7-3-2012
Responsivedesign 7-3-2012Thomas Carney
 
Rise of the responsive single page application
Rise of the responsive single page applicationRise of the responsive single page application
Rise of the responsive single page applicationOren Shatken
 
Mobile First - WCJ 2012
Mobile First - WCJ 2012Mobile First - WCJ 2012
Mobile First - WCJ 2012Gal Brill
 
How to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive WebsiteHow to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive WebsiteJj Jurgens
 
Responsive Web Design - Tom Robertshaw
Responsive Web Design - Tom RobertshawResponsive Web Design - Tom Robertshaw
Responsive Web Design - Tom RobertshawMeet Magento Spain
 
Why the heck isnt word press a cms
Why the heck isnt word press a cmsWhy the heck isnt word press a cms
Why the heck isnt word press a cmsJohn Eckman
 
HTML and Responsive Design
HTML and Responsive Design HTML and Responsive Design
HTML and Responsive Design Mindy McAdams
 
Ready to go Mobile? Today's Mobile Landscape: Responsive, Adaptive, Hybrid, a...
Ready to go Mobile? Today's Mobile Landscape: Responsive, Adaptive, Hybrid, a...Ready to go Mobile? Today's Mobile Landscape: Responsive, Adaptive, Hybrid, a...
Ready to go Mobile? Today's Mobile Landscape: Responsive, Adaptive, Hybrid, a...Jeremy Johnson
 
Project UX - Demosite
Project UX - DemositeProject UX - Demosite
Project UX - DemositeNDN Group
 

Similar to WordPress for mobile (20)

Responsive Vs Mobile Development in Magento - Kimberly Thomas - @MagentoGirl
Responsive Vs Mobile Development in Magento - Kimberly Thomas - @MagentoGirlResponsive Vs Mobile Development in Magento - Kimberly Thomas - @MagentoGirl
Responsive Vs Mobile Development in Magento - Kimberly Thomas - @MagentoGirl
 
Responsive Web Design_2013
Responsive Web Design_2013Responsive Web Design_2013
Responsive Web Design_2013
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web Design
 
Building Responsive Websites with Drupal
Building Responsive Websites with DrupalBuilding Responsive Websites with Drupal
Building Responsive Websites with Drupal
 
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012
Creating a Responsive Drupal Theme: Presentation from DrupalCamp Montreal 2012
 
Workshop 11: Trendy web designs & prototyping
Workshop 11: Trendy web designs & prototypingWorkshop 11: Trendy web designs & prototyping
Workshop 11: Trendy web designs & prototyping
 
Progressively Enhancing WordPress Themes
Progressively Enhancing WordPress ThemesProgressively Enhancing WordPress Themes
Progressively Enhancing WordPress Themes
 
Web designtrends 5-29-2013
Web designtrends 5-29-2013Web designtrends 5-29-2013
Web designtrends 5-29-2013
 
Module 08: Responsive Web Design
Module 08: Responsive Web DesignModule 08: Responsive Web Design
Module 08: Responsive Web Design
 
Responsive Design: What is it? How do we do it? How much will it cost?
Responsive Design: What is it? How do we do it? How much will it cost?Responsive Design: What is it? How do we do it? How much will it cost?
Responsive Design: What is it? How do we do it? How much will it cost?
 
Responsivedesign 7-3-2012
Responsivedesign 7-3-2012Responsivedesign 7-3-2012
Responsivedesign 7-3-2012
 
Rise of the responsive single page application
Rise of the responsive single page applicationRise of the responsive single page application
Rise of the responsive single page application
 
Mobile First - WCJ 2012
Mobile First - WCJ 2012Mobile First - WCJ 2012
Mobile First - WCJ 2012
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
How to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive WebsiteHow to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive Website
 
Responsive Web Design - Tom Robertshaw
Responsive Web Design - Tom RobertshawResponsive Web Design - Tom Robertshaw
Responsive Web Design - Tom Robertshaw
 
Why the heck isnt word press a cms
Why the heck isnt word press a cmsWhy the heck isnt word press a cms
Why the heck isnt word press a cms
 
HTML and Responsive Design
HTML and Responsive Design HTML and Responsive Design
HTML and Responsive Design
 
Ready to go Mobile? Today's Mobile Landscape: Responsive, Adaptive, Hybrid, a...
Ready to go Mobile? Today's Mobile Landscape: Responsive, Adaptive, Hybrid, a...Ready to go Mobile? Today's Mobile Landscape: Responsive, Adaptive, Hybrid, a...
Ready to go Mobile? Today's Mobile Landscape: Responsive, Adaptive, Hybrid, a...
 
Project UX - Demosite
Project UX - DemositeProject UX - Demosite
Project UX - Demosite
 

More from rachel_mccollin

Why Multisite? Uses for WordPress Multisite you may not have heard of.
Why Multisite? Uses for WordPress Multisite you may not have heard of.Why Multisite? Uses for WordPress Multisite you may not have heard of.
Why Multisite? Uses for WordPress Multisite you may not have heard of.rachel_mccollin
 
WordPress Multisite myth buster
WordPress Multisite myth busterWordPress Multisite myth buster
WordPress Multisite myth busterrachel_mccollin
 
Introduction to Code Club
Introduction to Code ClubIntroduction to Code Club
Introduction to Code Clubrachel_mccollin
 
WordPress Mobile development - slides from WordCamp UK 2012
WordPress Mobile development - slides from WordCamp UK 2012WordPress Mobile development - slides from WordCamp UK 2012
WordPress Mobile development - slides from WordCamp UK 2012rachel_mccollin
 
CMSes go mobile - Harness the power of WordPress
CMSes go mobile - Harness the power of WordPressCMSes go mobile - Harness the power of WordPress
CMSes go mobile - Harness the power of WordPressrachel_mccollin
 

More from rachel_mccollin (8)

Why Multisite? Uses for WordPress Multisite you may not have heard of.
Why Multisite? Uses for WordPress Multisite you may not have heard of.Why Multisite? Uses for WordPress Multisite you may not have heard of.
Why Multisite? Uses for WordPress Multisite you may not have heard of.
 
WordPress Multisite myth buster
WordPress Multisite myth busterWordPress Multisite myth buster
WordPress Multisite myth buster
 
Code club 2016 websites
Code club 2016 websitesCode club 2016 websites
Code club 2016 websites
 
Geeky Picture quiz
Geeky Picture quizGeeky Picture quiz
Geeky Picture quiz
 
Introduction to Code Club
Introduction to Code ClubIntroduction to Code Club
Introduction to Code Club
 
WordPress Web Apps
WordPress Web AppsWordPress Web Apps
WordPress Web Apps
 
WordPress Mobile development - slides from WordCamp UK 2012
WordPress Mobile development - slides from WordCamp UK 2012WordPress Mobile development - slides from WordCamp UK 2012
WordPress Mobile development - slides from WordCamp UK 2012
 
CMSes go mobile - Harness the power of WordPress
CMSes go mobile - Harness the power of WordPressCMSes go mobile - Harness the power of WordPress
CMSes go mobile - Harness the power of WordPress
 

Recently uploaded

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
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
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
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
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
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
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
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
 
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
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 

Recently uploaded (20)

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
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
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 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...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
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 ...
 
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
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 

WordPress for mobile

Editor's Notes

  1. \n\n
  2. \n\n
  3. I&apos;m not the expert, just someone who&apos;s interested and has been working on this area for a few clients. \nI know there will be people here who know a lot about this topic - please shout if you&apos;ve got anything to add or I&apos;ve got anything wrong!\nIf you&apos;ve got questions, please ask them during the session if you want - you don&apos;t have to wait until the end. if discussion goes on too long I may ask people to pause until the end so we can get through all the martial I&apos;ve prepared. \n
  4. \n\n
  5. \n\n
  6. \n\n
  7. \n\n
  8. \n\n
  9. \n\n
  10. \n\n
  11. \n\n
  12. \n\n
  13. \n\n
  14. \n\n
  15. \n\n
  16. \n\n
  17. \n\n
  18. \n\n
  19. \n\n
  20. \n\n
  21. \n\n
  22. \n\n
  23. \n\n
  24. \n\n
  25. \n\n
  26. \n\n
  27. \n\n
  28. \n\n
  29. \n\n
  30. \n\n
  31. \n\n
  32. \n\n
  33. \n\n
  34. \n\n
  35. \n\n