SlideShare une entreprise Scribd logo
1  sur  76
Télécharger pour lire hors ligne
Getting started
                   with WordPress

                   SARA QUINN / THE POYNTER INSTITUTE FOR MEDIA STUDIES




Wednesday, August 15, 2012
Wordpress is not just a
                   place to post updates.



Wednesday, August 15, 2012
… and pictures of your cat.




Wednesday, August 15, 2012
It can be an amazing
                   content managment
                   system.


Wednesday, August 15, 2012
You can develop it into
                   a complex website.



Wednesday, August 15, 2012
And it’s one of the most
                   well-documented pieces
                   of software around.


Wednesday, August 15, 2012
There are tons
                   of well-known sites
                   powered by Wordpress.
                             h"p://en.wordpress.com/notable‐users/




Wednesday, August 15, 2012
And it takes just about
                   30 seconds to start up.



Wednesday, August 15, 2012
It’s theme-based.




Wednesday, August 15, 2012
You can change
                   your design whenever
                   you want.


Wednesday, August 15, 2012
You can change
                   your design whenever
                   you want.
                   And your content stays.
Wednesday, August 15, 2012
There are lots of themes to choose from.




Wednesday, August 15, 2012
Choosing your theme




                             http://wordpress.org/extend/themes/tag-filter/

Wednesday, August 15, 2012
Choosing your theme



                             http://themeforest.net/


Wednesday, August 15, 2012
Self-hosted:
                   Not self-hosted:



Wednesday, August 15, 2012
Self-hosted:
                   WordPress.org
                   Offers lots of design options, customization.
                   You set this up on your own server.
                   You pay for the domain and hosting.




Wednesday, August 15, 2012
Not self-hosted:
                   WordPress.com
                   A free blogging service.
                   Less control over design and customization.
                   But it’s FREE! Easy to use and back-end
                   administration is very similar to Wordpress.org.




Wednesday, August 15, 2012
Sign up!   http://wordpress.com/#my-blogs



                   WordPress.com




Wednesday, August 15, 2012
Go to the dashboard




Wednesday, August 15, 2012
The back-end of your site.
                   Where you publish content, manage comments
                   and change your settings.




Wednesday, August 15, 2012
Wednesday, August 15, 2012
This is where you set up everything
                   that the outside world sees on your blog.




Wednesday, August 15, 2012
Take a quick peek at your blog
                   by clicking on the title of your blog.




Wednesday, August 15, 2012
You will see a default template that you
                   can use or decide to alter.




Wednesday, August 15, 2012
Choosing your theme




Wednesday, August 15, 2012
Here’s where you turn away from WordPress!
                   Get out a notebook.




Wednesday, August 15, 2012
I suggest you determine what you
                   need to put on your site, before you
                   actually select a theme.

                   Do you need a calendar?
                   Do you want a Twitter feed?
                   Do you want a list of
                   your most recent posts
                   in the right rail?




Wednesday, August 15, 2012
Will students be posting assignments?
                   What sort of commenting do you want?
                   Will you want a slide carousel?
                   Use video?
                   Display your Twitter Feed?
                   Portfolio samples of
                   your own work?




Wednesday, August 15, 2012
Wednesday, August 15, 2012
Choosing your theme




Wednesday, August 15, 2012
Choosing your theme




Wednesday, August 15, 2012
You can preview your site with different themes.




Wednesday, August 15, 2012
You can preview your site with different themes.




Wednesday, August 15, 2012
Not all sites make use of the same widgets.
                    Here, there’s no default calendar.




Wednesday, August 15, 2012
You’ll notice that your content jumps around,
                    depending on the template you choose.




Wednesday, August 15, 2012
You’ll want to examine the type to determine
                    how legible it is.




Wednesday, August 15, 2012
How’s the nav?




Wednesday, August 15, 2012
Can people easily find your pages?
                   Is there room for you to grow on the nav bar?
                   Do you need a dropdown menu?




Wednesday, August 15, 2012
Widgets: What are they?




Wednesday, August 15, 2012
Tools or content that you can add, arrange and
                  remove from your blog.




Wednesday, August 15, 2012
Many themes that you might choose
                   will already be “widgetized.”

                   In other words, they have code that sets up the
                   areas that will accept widgets. (right rail, etc.)




Wednesday, August 15, 2012
Tools or content that you can add, arrange and
                  remove from your blog.




Wednesday, August 15, 2012
Shop around for widgets that might be useful.




Wednesday, August 15, 2012
Many themes that you might choose
                   will already be “widgetized.”

                   In other words, they have code that sets up the
                   areas that will accept widgets. (right rail, etc.)




Wednesday, August 15, 2012
What are some sidebar
                   widgets that you might
                   want to use?


Wednesday, August 15, 2012
Choosing your theme
                    It’s important to determine the features you
                    want, in advance. “Measure twice, cut once.”




Wednesday, August 15, 2012
Choosing your theme
                    That way, you’ll cut the amount of custom
                    coding you’ll have to do later.




Wednesday, August 15, 2012
So, if I choose this theme, and it doesn’t
                    include areas that will accept widgets ...
                    what to I have to do?




Wednesday, August 15, 2012
Code alert!
                   Let’s see what some of the code would
                   look like if you wanted to add widget
                   areas to your site.




Wednesday, August 15, 2012
Declare your widget-ized area.
                   The most common place for widgets is in the
                   sidebar. So, in the sidebar.php file:

                     <!-- Static content could go above widgetized area. -->
                     <?php if (!function_exists('dynamic_sidebar') || !
                     dynamic_sidebar('Sidebar Widgets')) :
                     ?>
                     Content   in here will ONLY show if there are no widgets
                     active,   or if the version of WordPress running doesn't
                     support   widgets. Otherwise, this area is where the
                     widgets   go, set via the Admin
                     <?php endif; ?>
                     <!-- Static content could go below widgetized area. -->




Wednesday, August 15, 2012
Activate your widget-ized area.
                   This code would appear in your
                   functions.php file:

                     // activate widget area
                     if (function_exists('register_sidebar')) {
                     register_sidebar(array(
                     'name'=>'Sidebar Widgets',
                     'before_widget' => '<div id="%1$s" class="widget %2$s">',
                     'after_widget' => '</div>',
                     'before_title' => '<h4 class="widgettitle">',
                     'after_title' => '</h4>',
                     ));
                     }




Wednesday, August 15, 2012
What’s html?
                   What’s css?




Wednesday, August 15, 2012
What’s html? structure
                   What’s css?




Wednesday, August 15, 2012
What’s html? structure
                   What’s css? style




Wednesday, August 15, 2012
Super duper functionality?
                    There’s a beauty to WordPress, in that
                    there are lots of WP developers.

                    And they take things pretty far.




Wednesday, August 15, 2012
Super duper functionality?
                    Some themes integrate a photo-sharing
                    service such as Flickr; a statistical application
                    like Google Analytics or even a database
                    interface such as phpMyAdmin.




Wednesday, August 15, 2012
Super duper functionality?
                    Some themes integrate a photo-sharing
                    service such as Flickr; a statistical application
                    like Google Analytics or even a database
                    interface such as phpMyAdmin.

                    There’s an easy new feature that allows you to
                    add sharing to Facebook, Tumblr, Twitter
                    and more!




Wednesday, August 15, 2012
Where to find great themes?
                     FREE! theme resources
                       • WordPress.org Theme Library - http://digwp.com/u/20

                       • The Mighty Google - http://digwp.com/u/21

                       • Digging Into WordPress - can you guess the URL?

                       • Smashing Magazine - http://digwp.com/u/22




Wednesday, August 15, 2012
Where to find great themes?
                     Places to buy premium themes
                       • ThemeForest - http://digwp.com/u/385

                       • WooThemes - http://digwp.com/u/386

                       • ElegantThemes - http://digwp.com/u/387

                       • UpThemes - http://digwp.com/u/561




Wednesday, August 15, 2012
What are Plugins?
                    Pieces of software that extend the
                    functionality of WordPress.

                    Usually written by those lovable
                    WordPress fanatics.




Wednesday, August 15, 2012
What are some
                   of the best plugins?
                    Art Direction http://digwp.com/u/24

                    This allows you to insert extra code (typically
                    CSS or JavaScript) into specific pages or posts.




Wednesday, August 15, 2012
Art Direction http://digwp.com/u/24

                    It gives you complete stylistic and functional
                    control over every post and page of your site.




Wednesday, August 15, 2012
All in One SEO Pack http://digwp.com/u/29

                    It automatically generates an appropriate meta
                    description tag for each post and page, based
                    on their content.




Wednesday, August 15, 2012
Creating child themes




Wednesday, August 15, 2012
A child theme is based on a theme
                   that you choose.

                   ADVANTAGE: This allows you to override
                   the style theme (color, typefaces, etc)
                   without overriding the base theme (widgets,
                   header style, elements, etc).




Wednesday, August 15, 2012
Creating a child theme is simple.

                   Just create a folder (named as you wish) in your
                   wp-content/themes directory.

                   Within that folder, place a simple style.css file.




Wednesday, August 15, 2012
Here’s an example:
      Theme Name: My Cool Child Theme
      Theme URI: http://digwp.com/
      Description: Child Theme for Digging Into WordPress
      Author: Chris Coyier
      Author URI: http://chriscoyier.net/
      Template: DigWP
      Version: 2.0
      */
      @import url("../digWP/style.css");




Wednesday, August 15, 2012
Here’s an example:
                     Theme Name: My Cool Child Theme
                     Theme URI: http://digwp.com/
                     Description: Child Theme for Digging Into WordPress
                     Author: Chris Coyier
                     Author URI: http://chriscoyier.net/
                     Template: DigWP
                     Version: 2.0
                     */
                     @import url("../digWP/style.css");


                   The most important line there is the “Template: DigWP” line, which
                   references the folder of the parent theme. The last line imports the
                   stylesheet from that parent theme.




Wednesday, August 15, 2012
Styling your theme




Wednesday, August 15, 2012
In any WordPress theme, the style.css
                   is required.

                   WordPress won’t even recognize a folder in your
                   themes folder unless it includes this file.




Wednesday, August 15, 2012
To reset or not?




Wednesday, August 15, 2012
When you pick up code, you might get
                   unpredictable defaults that you’ll want to reset.

                   For example: Firefox and Explorer have a
                   different default padding amount around
                   <body>. This can cause problems later.




Wednesday, August 15, 2012
We suggest that you put a reset at the beginning
                   of your child theme code css.

                   You will probably be changing the typefaces and
                   colors, etc. But this will catch a lot of little things
                   that you might not be thinking of.




Wednesday, August 15, 2012
Popular CSS Resets:

                    • Eric Meyer’s Reset Reloaded
                     From the man himself: http://digwp.com/u/142
                    • YUI (Yahoo User Interface) Reset CSS
                     http://digwp.com/u/143
                    • Star Selector Reset
                     Looks like this: * { margin: 0; padding: 0; }


                   Remember that you will put this at the top of
                   your css file, so it will clear out the mess.




Wednesday, August 15, 2012
“When I am working on a problem, I
           never think about beauty. I only think
           about how to solve the problem. …”
                             – RICHARD BUCKMINSTER FULLER




Wednesday, August 15, 2012
“When I am working on a problem, I
           never think about beauty. I only think
           about how to solve the problem.
           But when I have finished, if the
           solution isn’t beautiful, I know it
           is wrong.”
                             – RICHARD BUCKMINSTER FULLER




Wednesday, August 15, 2012

Contenu connexe

Similaire à Quinn beginning wordpress_2012

Newbies, you are not alone
Newbies, you are not aloneNewbies, you are not alone
Newbies, you are not aloneBrandon Dove
 
Responsive widget-design-with-word press
Responsive widget-design-with-word pressResponsive widget-design-with-word press
Responsive widget-design-with-word pressWes Chyrchel
 
Diseño de APIs con Ruby
Diseño de APIs con RubyDiseño de APIs con Ruby
Diseño de APIs con RubySoftware Guru
 
WordPress How To by Sherif Morgan
WordPress How To by Sherif MorganWordPress How To by Sherif Morgan
WordPress How To by Sherif MorganOnlineBizSmarts.com
 
Refresh WordPress Beginner Workshop
Refresh WordPress Beginner WorkshopRefresh WordPress Beginner Workshop
Refresh WordPress Beginner WorkshopDavid Bisset
 
15 Drupal Modules You've Probably Overlooked but Shouldn't
15 Drupal Modules You've Probably Overlooked but Shouldn't15 Drupal Modules You've Probably Overlooked but Shouldn't
15 Drupal Modules You've Probably Overlooked but Shouldn'tChris Sloan
 
HTML5 and CSS3: does now really mean now?
HTML5 and CSS3: does now really mean now?HTML5 and CSS3: does now really mean now?
HTML5 and CSS3: does now really mean now?Chris Mills
 
SoCal WordPress Meetup - iWeb to WordPress aka WP99
SoCal WordPress Meetup - iWeb to WordPress aka WP99SoCal WordPress Meetup - iWeb to WordPress aka WP99
SoCal WordPress Meetup - iWeb to WordPress aka WP99Noel Saw
 
Views Mini-Course, Part I: An Introduction to Views
Views Mini-Course, Part I: An Introduction to ViewsViews Mini-Course, Part I: An Introduction to Views
Views Mini-Course, Part I: An Introduction to ViewsAcquia
 
Blogging 201: From Blank Slate to Blog in Under an Hour
Blogging 201: From Blank Slate to Blog in Under an HourBlogging 201: From Blank Slate to Blog in Under an Hour
Blogging 201: From Blank Slate to Blog in Under an HourAdam Gartenberg
 
Keynote: What's Up With WordPress?
Keynote: What's Up With WordPress?Keynote: What's Up With WordPress?
Keynote: What's Up With WordPress?Valent Mustamin
 
What's up with WordPress
What's up with WordPressWhat's up with WordPress
What's up with WordPressBeau Lebens
 
Complete word press explained guide for beginners 2022
 Complete word press explained guide for beginners 2022 Complete word press explained guide for beginners 2022
Complete word press explained guide for beginners 2022aashna wafa
 
Building a website with WordPress
Building a website with WordPressBuilding a website with WordPress
Building a website with WordPressAnthony Montalbano
 
Kick start your career with wordpress
Kick start your career with wordpressKick start your career with wordpress
Kick start your career with wordpressOpenDev
 
Kick start your career with WordPress
Kick start your career with WordPressKick start your career with WordPress
Kick start your career with WordPressJignasa Naik
 

Similaire à Quinn beginning wordpress_2012 (20)

Newbies, you are not alone
Newbies, you are not aloneNewbies, you are not alone
Newbies, you are not alone
 
Responsive widget-design-with-word press
Responsive widget-design-with-word pressResponsive widget-design-with-word press
Responsive widget-design-with-word press
 
Diseño de APIs con Ruby
Diseño de APIs con RubyDiseño de APIs con Ruby
Diseño de APIs con Ruby
 
WordPress How To by Sherif Morgan
WordPress How To by Sherif MorganWordPress How To by Sherif Morgan
WordPress How To by Sherif Morgan
 
Refresh WordPress Beginner Workshop
Refresh WordPress Beginner WorkshopRefresh WordPress Beginner Workshop
Refresh WordPress Beginner Workshop
 
15 Drupal Modules You've Probably Overlooked but Shouldn't
15 Drupal Modules You've Probably Overlooked but Shouldn't15 Drupal Modules You've Probably Overlooked but Shouldn't
15 Drupal Modules You've Probably Overlooked but Shouldn't
 
Test ss 2
Test ss 2Test ss 2
Test ss 2
 
HTML5 and CSS3: does now really mean now?
HTML5 and CSS3: does now really mean now?HTML5 and CSS3: does now really mean now?
HTML5 and CSS3: does now really mean now?
 
SoCal WordPress Meetup - iWeb to WordPress aka WP99
SoCal WordPress Meetup - iWeb to WordPress aka WP99SoCal WordPress Meetup - iWeb to WordPress aka WP99
SoCal WordPress Meetup - iWeb to WordPress aka WP99
 
Views Mini-Course, Part I: An Introduction to Views
Views Mini-Course, Part I: An Introduction to ViewsViews Mini-Course, Part I: An Introduction to Views
Views Mini-Course, Part I: An Introduction to Views
 
Zinavo
ZinavoZinavo
Zinavo
 
Blogging 201: From Blank Slate to Blog in Under an Hour
Blogging 201: From Blank Slate to Blog in Under an HourBlogging 201: From Blank Slate to Blog in Under an Hour
Blogging 201: From Blank Slate to Blog in Under an Hour
 
Keynote: What's Up With WordPress?
Keynote: What's Up With WordPress?Keynote: What's Up With WordPress?
Keynote: What's Up With WordPress?
 
What's up with WordPress
What's up with WordPressWhat's up with WordPress
What's up with WordPress
 
Wordpress
WordpressWordpress
Wordpress
 
WordPress Widgets
WordPress WidgetsWordPress Widgets
WordPress Widgets
 
Complete word press explained guide for beginners 2022
 Complete word press explained guide for beginners 2022 Complete word press explained guide for beginners 2022
Complete word press explained guide for beginners 2022
 
Building a website with WordPress
Building a website with WordPressBuilding a website with WordPress
Building a website with WordPress
 
Kick start your career with wordpress
Kick start your career with wordpressKick start your career with wordpress
Kick start your career with wordpress
 
Kick start your career with WordPress
Kick start your career with WordPressKick start your career with WordPress
Kick start your career with WordPress
 

Plus de Sara Quinn

Mobile Research for Advertising_Michael Hanley
Mobile Research for Advertising_Michael HanleyMobile Research for Advertising_Michael Hanley
Mobile Research for Advertising_Michael HanleySara Quinn
 
Mobile Analytics for Advertising_Michael Hanley
Mobile Analytics for Advertising_Michael HanleyMobile Analytics for Advertising_Michael Hanley
Mobile Analytics for Advertising_Michael HanleySara Quinn
 
Mobile Advertising Strategy_Michael Hanley
Mobile Advertising Strategy_Michael HanleyMobile Advertising Strategy_Michael Hanley
Mobile Advertising Strategy_Michael HanleySara Quinn
 
Mobile Advertising Creative_Michael Hanley
Mobile Advertising Creative_Michael HanleyMobile Advertising Creative_Michael Hanley
Mobile Advertising Creative_Michael HanleySara Quinn
 
Mobile Social Media and Advertising_Michael Hanley
Mobile Social Media and Advertising_Michael HanleyMobile Social Media and Advertising_Michael Hanley
Mobile Social Media and Advertising_Michael HanleySara Quinn
 
Mobile Demographics and Consumer Trends_Michael Hanley
Mobile Demographics and Consumer Trends_Michael HanleyMobile Demographics and Consumer Trends_Michael Hanley
Mobile Demographics and Consumer Trends_Michael HanleySara Quinn
 
mCommerce and Mobile Banking_Michael Hanley
mCommerce and Mobile Banking_Michael HanleymCommerce and Mobile Banking_Michael Hanley
mCommerce and Mobile Banking_Michael HanleySara Quinn
 
Location Based and Proximity Marketing_Michael Hanley
Location Based and Proximity Marketing_Michael HanleyLocation Based and Proximity Marketing_Michael Hanley
Location Based and Proximity Marketing_Michael HanleySara Quinn
 
Mobile Apps_Michael Hanley
Mobile Apps_Michael HanleyMobile Apps_Michael Hanley
Mobile Apps_Michael HanleySara Quinn
 
Mobile Web and WAP_Michael Hanley
Mobile Web and WAP_Michael HanleyMobile Web and WAP_Michael Hanley
Mobile Web and WAP_Michael HanleySara Quinn
 
Mobile Message Delivery: SMS and MMS_Michael Hanley
Mobile Message Delivery: SMS and MMS_Michael HanleyMobile Message Delivery: SMS and MMS_Michael Hanley
Mobile Message Delivery: SMS and MMS_Michael HanleySara Quinn
 
Intro to Mobile Marketing_Michael Hanley
Intro to Mobile Marketing_Michael HanleyIntro to Mobile Marketing_Michael Hanley
Intro to Mobile Marketing_Michael HanleySara Quinn
 
Mobile: Location Privacy and Apps_Michael Hanley
Mobile: Location Privacy and Apps_Michael HanleyMobile: Location Privacy and Apps_Michael Hanley
Mobile: Location Privacy and Apps_Michael HanleySara Quinn
 
Mobile Marketing, Code of Ethics, Privacy and Children_Michael Hanley
Mobile Marketing, Code of Ethics, Privacy and Children_Michael HanleyMobile Marketing, Code of Ethics, Privacy and Children_Michael Hanley
Mobile Marketing, Code of Ethics, Privacy and Children_Michael HanleySara Quinn
 
Mobile Regulations, Laws and Procedures_Michael Hanley
Mobile Regulations, Laws and Procedures_Michael HanleyMobile Regulations, Laws and Procedures_Michael Hanley
Mobile Regulations, Laws and Procedures_Michael HanleySara Quinn
 
Mobile Devices_Michael Hanley
Mobile Devices_Michael HanleyMobile Devices_Michael Hanley
Mobile Devices_Michael HanleySara Quinn
 
Mobile Marketing: Pros and Cons_Michael Hanley
Mobile Marketing: Pros and Cons_Michael HanleyMobile Marketing: Pros and Cons_Michael Hanley
Mobile Marketing: Pros and Cons_Michael HanleySara Quinn
 
The Mobile Ecosystem_Michael Hanley
The Mobile Ecosystem_Michael HanleyThe Mobile Ecosystem_Michael Hanley
The Mobile Ecosystem_Michael HanleySara Quinn
 
How Do People Know What to Tap?: Mobile Design
How Do People Know What to Tap?: Mobile DesignHow Do People Know What to Tap?: Mobile Design
How Do People Know What to Tap?: Mobile DesignSara Quinn
 
Typography and Grid for Mobile Design
Typography and Grid for Mobile DesignTypography and Grid for Mobile Design
Typography and Grid for Mobile DesignSara Quinn
 

Plus de Sara Quinn (20)

Mobile Research for Advertising_Michael Hanley
Mobile Research for Advertising_Michael HanleyMobile Research for Advertising_Michael Hanley
Mobile Research for Advertising_Michael Hanley
 
Mobile Analytics for Advertising_Michael Hanley
Mobile Analytics for Advertising_Michael HanleyMobile Analytics for Advertising_Michael Hanley
Mobile Analytics for Advertising_Michael Hanley
 
Mobile Advertising Strategy_Michael Hanley
Mobile Advertising Strategy_Michael HanleyMobile Advertising Strategy_Michael Hanley
Mobile Advertising Strategy_Michael Hanley
 
Mobile Advertising Creative_Michael Hanley
Mobile Advertising Creative_Michael HanleyMobile Advertising Creative_Michael Hanley
Mobile Advertising Creative_Michael Hanley
 
Mobile Social Media and Advertising_Michael Hanley
Mobile Social Media and Advertising_Michael HanleyMobile Social Media and Advertising_Michael Hanley
Mobile Social Media and Advertising_Michael Hanley
 
Mobile Demographics and Consumer Trends_Michael Hanley
Mobile Demographics and Consumer Trends_Michael HanleyMobile Demographics and Consumer Trends_Michael Hanley
Mobile Demographics and Consumer Trends_Michael Hanley
 
mCommerce and Mobile Banking_Michael Hanley
mCommerce and Mobile Banking_Michael HanleymCommerce and Mobile Banking_Michael Hanley
mCommerce and Mobile Banking_Michael Hanley
 
Location Based and Proximity Marketing_Michael Hanley
Location Based and Proximity Marketing_Michael HanleyLocation Based and Proximity Marketing_Michael Hanley
Location Based and Proximity Marketing_Michael Hanley
 
Mobile Apps_Michael Hanley
Mobile Apps_Michael HanleyMobile Apps_Michael Hanley
Mobile Apps_Michael Hanley
 
Mobile Web and WAP_Michael Hanley
Mobile Web and WAP_Michael HanleyMobile Web and WAP_Michael Hanley
Mobile Web and WAP_Michael Hanley
 
Mobile Message Delivery: SMS and MMS_Michael Hanley
Mobile Message Delivery: SMS and MMS_Michael HanleyMobile Message Delivery: SMS and MMS_Michael Hanley
Mobile Message Delivery: SMS and MMS_Michael Hanley
 
Intro to Mobile Marketing_Michael Hanley
Intro to Mobile Marketing_Michael HanleyIntro to Mobile Marketing_Michael Hanley
Intro to Mobile Marketing_Michael Hanley
 
Mobile: Location Privacy and Apps_Michael Hanley
Mobile: Location Privacy and Apps_Michael HanleyMobile: Location Privacy and Apps_Michael Hanley
Mobile: Location Privacy and Apps_Michael Hanley
 
Mobile Marketing, Code of Ethics, Privacy and Children_Michael Hanley
Mobile Marketing, Code of Ethics, Privacy and Children_Michael HanleyMobile Marketing, Code of Ethics, Privacy and Children_Michael Hanley
Mobile Marketing, Code of Ethics, Privacy and Children_Michael Hanley
 
Mobile Regulations, Laws and Procedures_Michael Hanley
Mobile Regulations, Laws and Procedures_Michael HanleyMobile Regulations, Laws and Procedures_Michael Hanley
Mobile Regulations, Laws and Procedures_Michael Hanley
 
Mobile Devices_Michael Hanley
Mobile Devices_Michael HanleyMobile Devices_Michael Hanley
Mobile Devices_Michael Hanley
 
Mobile Marketing: Pros and Cons_Michael Hanley
Mobile Marketing: Pros and Cons_Michael HanleyMobile Marketing: Pros and Cons_Michael Hanley
Mobile Marketing: Pros and Cons_Michael Hanley
 
The Mobile Ecosystem_Michael Hanley
The Mobile Ecosystem_Michael HanleyThe Mobile Ecosystem_Michael Hanley
The Mobile Ecosystem_Michael Hanley
 
How Do People Know What to Tap?: Mobile Design
How Do People Know What to Tap?: Mobile DesignHow Do People Know What to Tap?: Mobile Design
How Do People Know What to Tap?: Mobile Design
 
Typography and Grid for Mobile Design
Typography and Grid for Mobile DesignTypography and Grid for Mobile Design
Typography and Grid for Mobile Design
 

Dernier

Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...anjaliyadav012327
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxShobhayan Kirtania
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...Pooja Nehwal
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 

Dernier (20)

Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptx
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 

Quinn beginning wordpress_2012

  • 1. Getting started with WordPress SARA QUINN / THE POYNTER INSTITUTE FOR MEDIA STUDIES Wednesday, August 15, 2012
  • 2. Wordpress is not just a place to post updates. Wednesday, August 15, 2012
  • 3. … and pictures of your cat. Wednesday, August 15, 2012
  • 4. It can be an amazing content managment system. Wednesday, August 15, 2012
  • 5. You can develop it into a complex website. Wednesday, August 15, 2012
  • 6. And it’s one of the most well-documented pieces of software around. Wednesday, August 15, 2012
  • 7. There are tons of well-known sites powered by Wordpress. h"p://en.wordpress.com/notable‐users/ Wednesday, August 15, 2012
  • 8. And it takes just about 30 seconds to start up. Wednesday, August 15, 2012
  • 10. You can change your design whenever you want. Wednesday, August 15, 2012
  • 11. You can change your design whenever you want. And your content stays. Wednesday, August 15, 2012
  • 12. There are lots of themes to choose from. Wednesday, August 15, 2012
  • 13. Choosing your theme http://wordpress.org/extend/themes/tag-filter/ Wednesday, August 15, 2012
  • 14. Choosing your theme http://themeforest.net/ Wednesday, August 15, 2012
  • 15. Self-hosted: Not self-hosted: Wednesday, August 15, 2012
  • 16. Self-hosted: WordPress.org Offers lots of design options, customization. You set this up on your own server. You pay for the domain and hosting. Wednesday, August 15, 2012
  • 17. Not self-hosted: WordPress.com A free blogging service. Less control over design and customization. But it’s FREE! Easy to use and back-end administration is very similar to Wordpress.org. Wednesday, August 15, 2012
  • 18. Sign up! http://wordpress.com/#my-blogs WordPress.com Wednesday, August 15, 2012
  • 19. Go to the dashboard Wednesday, August 15, 2012
  • 20. The back-end of your site. Where you publish content, manage comments and change your settings. Wednesday, August 15, 2012
  • 22. This is where you set up everything that the outside world sees on your blog. Wednesday, August 15, 2012
  • 23. Take a quick peek at your blog by clicking on the title of your blog. Wednesday, August 15, 2012
  • 24. You will see a default template that you can use or decide to alter. Wednesday, August 15, 2012
  • 26. Here’s where you turn away from WordPress! Get out a notebook. Wednesday, August 15, 2012
  • 27. I suggest you determine what you need to put on your site, before you actually select a theme. Do you need a calendar? Do you want a Twitter feed? Do you want a list of your most recent posts in the right rail? Wednesday, August 15, 2012
  • 28. Will students be posting assignments? What sort of commenting do you want? Will you want a slide carousel? Use video? Display your Twitter Feed? Portfolio samples of your own work? Wednesday, August 15, 2012
  • 32. You can preview your site with different themes. Wednesday, August 15, 2012
  • 33. You can preview your site with different themes. Wednesday, August 15, 2012
  • 34. Not all sites make use of the same widgets. Here, there’s no default calendar. Wednesday, August 15, 2012
  • 35. You’ll notice that your content jumps around, depending on the template you choose. Wednesday, August 15, 2012
  • 36. You’ll want to examine the type to determine how legible it is. Wednesday, August 15, 2012
  • 37. How’s the nav? Wednesday, August 15, 2012
  • 38. Can people easily find your pages? Is there room for you to grow on the nav bar? Do you need a dropdown menu? Wednesday, August 15, 2012
  • 39. Widgets: What are they? Wednesday, August 15, 2012
  • 40. Tools or content that you can add, arrange and remove from your blog. Wednesday, August 15, 2012
  • 41. Many themes that you might choose will already be “widgetized.” In other words, they have code that sets up the areas that will accept widgets. (right rail, etc.) Wednesday, August 15, 2012
  • 42. Tools or content that you can add, arrange and remove from your blog. Wednesday, August 15, 2012
  • 43. Shop around for widgets that might be useful. Wednesday, August 15, 2012
  • 44. Many themes that you might choose will already be “widgetized.” In other words, they have code that sets up the areas that will accept widgets. (right rail, etc.) Wednesday, August 15, 2012
  • 45. What are some sidebar widgets that you might want to use? Wednesday, August 15, 2012
  • 46. Choosing your theme It’s important to determine the features you want, in advance. “Measure twice, cut once.” Wednesday, August 15, 2012
  • 47. Choosing your theme That way, you’ll cut the amount of custom coding you’ll have to do later. Wednesday, August 15, 2012
  • 48. So, if I choose this theme, and it doesn’t include areas that will accept widgets ... what to I have to do? Wednesday, August 15, 2012
  • 49. Code alert! Let’s see what some of the code would look like if you wanted to add widget areas to your site. Wednesday, August 15, 2012
  • 50. Declare your widget-ized area. The most common place for widgets is in the sidebar. So, in the sidebar.php file: <!-- Static content could go above widgetized area. --> <?php if (!function_exists('dynamic_sidebar') || ! dynamic_sidebar('Sidebar Widgets')) : ?> Content in here will ONLY show if there are no widgets active, or if the version of WordPress running doesn't support widgets. Otherwise, this area is where the widgets go, set via the Admin <?php endif; ?> <!-- Static content could go below widgetized area. --> Wednesday, August 15, 2012
  • 51. Activate your widget-ized area. This code would appear in your functions.php file: // activate widget area if (function_exists('register_sidebar')) { register_sidebar(array( 'name'=>'Sidebar Widgets', 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widgettitle">', 'after_title' => '</h4>', )); } Wednesday, August 15, 2012
  • 52. What’s html? What’s css? Wednesday, August 15, 2012
  • 53. What’s html? structure What’s css? Wednesday, August 15, 2012
  • 54. What’s html? structure What’s css? style Wednesday, August 15, 2012
  • 55. Super duper functionality? There’s a beauty to WordPress, in that there are lots of WP developers. And they take things pretty far. Wednesday, August 15, 2012
  • 56. Super duper functionality? Some themes integrate a photo-sharing service such as Flickr; a statistical application like Google Analytics or even a database interface such as phpMyAdmin. Wednesday, August 15, 2012
  • 57. Super duper functionality? Some themes integrate a photo-sharing service such as Flickr; a statistical application like Google Analytics or even a database interface such as phpMyAdmin. There’s an easy new feature that allows you to add sharing to Facebook, Tumblr, Twitter and more! Wednesday, August 15, 2012
  • 58. Where to find great themes? FREE! theme resources • WordPress.org Theme Library - http://digwp.com/u/20 • The Mighty Google - http://digwp.com/u/21 • Digging Into WordPress - can you guess the URL? • Smashing Magazine - http://digwp.com/u/22 Wednesday, August 15, 2012
  • 59. Where to find great themes? Places to buy premium themes • ThemeForest - http://digwp.com/u/385 • WooThemes - http://digwp.com/u/386 • ElegantThemes - http://digwp.com/u/387 • UpThemes - http://digwp.com/u/561 Wednesday, August 15, 2012
  • 60. What are Plugins? Pieces of software that extend the functionality of WordPress. Usually written by those lovable WordPress fanatics. Wednesday, August 15, 2012
  • 61. What are some of the best plugins? Art Direction http://digwp.com/u/24 This allows you to insert extra code (typically CSS or JavaScript) into specific pages or posts. Wednesday, August 15, 2012
  • 62. Art Direction http://digwp.com/u/24 It gives you complete stylistic and functional control over every post and page of your site. Wednesday, August 15, 2012
  • 63. All in One SEO Pack http://digwp.com/u/29 It automatically generates an appropriate meta description tag for each post and page, based on their content. Wednesday, August 15, 2012
  • 65. A child theme is based on a theme that you choose. ADVANTAGE: This allows you to override the style theme (color, typefaces, etc) without overriding the base theme (widgets, header style, elements, etc). Wednesday, August 15, 2012
  • 66. Creating a child theme is simple. Just create a folder (named as you wish) in your wp-content/themes directory. Within that folder, place a simple style.css file. Wednesday, August 15, 2012
  • 67. Here’s an example: Theme Name: My Cool Child Theme Theme URI: http://digwp.com/ Description: Child Theme for Digging Into WordPress Author: Chris Coyier Author URI: http://chriscoyier.net/ Template: DigWP Version: 2.0 */ @import url("../digWP/style.css"); Wednesday, August 15, 2012
  • 68. Here’s an example: Theme Name: My Cool Child Theme Theme URI: http://digwp.com/ Description: Child Theme for Digging Into WordPress Author: Chris Coyier Author URI: http://chriscoyier.net/ Template: DigWP Version: 2.0 */ @import url("../digWP/style.css"); The most important line there is the “Template: DigWP” line, which references the folder of the parent theme. The last line imports the stylesheet from that parent theme. Wednesday, August 15, 2012
  • 69. Styling your theme Wednesday, August 15, 2012
  • 70. In any WordPress theme, the style.css is required. WordPress won’t even recognize a folder in your themes folder unless it includes this file. Wednesday, August 15, 2012
  • 71. To reset or not? Wednesday, August 15, 2012
  • 72. When you pick up code, you might get unpredictable defaults that you’ll want to reset. For example: Firefox and Explorer have a different default padding amount around <body>. This can cause problems later. Wednesday, August 15, 2012
  • 73. We suggest that you put a reset at the beginning of your child theme code css. You will probably be changing the typefaces and colors, etc. But this will catch a lot of little things that you might not be thinking of. Wednesday, August 15, 2012
  • 74. Popular CSS Resets: • Eric Meyer’s Reset Reloaded From the man himself: http://digwp.com/u/142 • YUI (Yahoo User Interface) Reset CSS http://digwp.com/u/143 • Star Selector Reset Looks like this: * { margin: 0; padding: 0; } Remember that you will put this at the top of your css file, so it will clear out the mess. Wednesday, August 15, 2012
  • 75. “When I am working on a problem, I never think about beauty. I only think about how to solve the problem. …” – RICHARD BUCKMINSTER FULLER Wednesday, August 15, 2012
  • 76. “When I am working on a problem, I never think about beauty. I only think about how to solve the problem. But when I have finished, if the solution isn’t beautiful, I know it is wrong.” – RICHARD BUCKMINSTER FULLER Wednesday, August 15, 2012