SlideShare a Scribd company logo
1 of 57
WORDPRESS SITE
BUILDING BASICS
Jeff McNear
ā€¢ https://plasterdog.com
ā€¢ https://webprosmeetup.org/
ā€¢ jeff@plasterdog.com
ā€¢ 847/849-7060
ā€¢ Focus on building customized
WordPress installations & custom
themes
ā€¢ Building & repairing WordPress sites
since before WordPress 3.0
ā€¢ Have significant exposure to Joomla,
Drupal, PHP Fusion, ZenCart ā€¦ and
some others
Itā€™s best to know how a thing works before
you start to modify it ā€¦
OPEN SOURCE CMS
WORDPRESS
WORDPRESS
CORE CODE IS AUGMENTED
VIA MODULE COMPONENTS:
OVERALL FILE STRUCTURE:
NON CORE FILES ARE IN
WP-CONTENT
THEME STRUCTURE
THE THEME DEFINES A
CONSISTENT LAYOUT
WORDPRESS STRUCTURE:
PAGES:
ā€¢ Stand-alone content
ā€¢ More likely to have
alternative templates
ā€¢ Can have parent/child
relationship
ā€¢ No relevant taxonomies
POSTS:
ā€¢ Two associated
taxonomies: categories &
tags
ā€¢ May have alternative
templates as well
ā€¢ Themes contain template
configurations for
taxonomy archives
ā€¢ Content can be shown in a
dynamic way
TAXONOMIES:
CATEGORIES
ā€¢ Can be hierarchical
ā€¢ Multiple selections allowed
ā€¢ Unique archive template(s)
TAGS
ā€¢ No hierarchy
ā€¢ Multiple selections allowed
ā€¢ Unique archive template(s)
ā€¢ Often incorrectly used
MENUS:
=> Appearance
=> Menus
ā€¢ Can be assigned by region
or via widget
ā€¢ Any existing content or
archive is selectable
ā€¢ Theme controls the
behavior and styling
WIDGETS:
=> Appearance
=> Widgets
ā€¢ Many default options
ā€¢ Plugins will often add
their own widget
ā€¢ The Theme defines the
widget regions
MEDIA:
=> Media
ā€¢ Any uploaded file is
considered media
ā€¢ Images are rendered into
three sizes upon upload
ā€¢ Default behavior is to
structure files into folders
defined by month
ā€¢ A good naming
convention can be crucial
SITE NAME & TAGLINE:
=> Settings
=> General
ā€¢ Important for SEO even if
the theme doesnā€™t show
the fields on the ā€œfront
endā€
READING SETTINGS:
=> Settings
=> Reading
ā€¢ Determines the landing
page
ā€¢ Determines whether the
site is exposed to indexing
ā€¢ Determines the number
of posts shown in an
archive
PERMALINK SETTINGS:
=> Settings
=> Permalinks
ā€¢ In most cases ā€œpost
nameā€ is preferred
ā€¢ Changing this after site
launch could cause SEO
issues
DISCUSSION SETTINGS:
=> Settings
=> Discussion
ā€¢ If you arenā€™t encouraging
comments, shut things
down
ā€¢ If comments are allowed
moderate them
ā€¢ Akismet is crucial
MEDIA SETTINGS:
=> Settings
=> Media
ā€¢ Default sizes usually are
just fine
ā€¢ If you change them after
the site is launched you
will need the ā€œregenerate
thumbnailsā€ plugin
USER PERMISSIONS:
=> Users
ā€¢ By default user
permissions define
editorial permissions
ā€¢ The ā€œsubscriberā€ role
allows validated user to
see ā€œprivateā€ content
DEFAULT USER LEVELS:
ā€¢ Administrator ā€“ somebody who has access to all the
administration features within a single site.
ā€¢ Editor ā€“ somebody who can publish and manage posts
including the posts of other users.
ā€¢ Author ā€“ somebody who can publish and manage
their own posts.
ā€¢ Contributor ā€“ somebody who can write and manage
their own posts but cannot publish them.
ā€¢ Subscriber ā€“ somebody who can only manage their
profile.
THE GUTENBERG EDITOR:
COMMON BLOCKS:
ā€¢ Paragraph
ā€¢ Image
ā€¢ Heading
ā€¢ Gallery
ā€¢ List
ā€¢ Quote
ā€¢ Audio
ā€¢ Cover
ā€¢ File
ā€¢ Video
FORMATTING BLOCKS:
ā€¢ Code
ā€¢ Classic
ā€¢ Custom HTML
ā€¢ Preformatted
ā€¢ Pullquote
ā€¢ Table
ā€¢ Verse
LAYOUT BLOCKS:
ā€¢ Button
ā€¢ Columns
ā€¢ Group
ā€¢ Media & Text
ā€¢ More
ā€¢ Page Break
ā€¢ Seperator
ā€¢ Spacer
WIDGET BLOCKS:
ā€¢ Shortcode
ā€¢ Archives
ā€¢ Calendar
ā€¢ Categories
ā€¢ Latest Comments
ā€¢ Latest Posts
ā€¢ RSS
ā€¢ Search
ā€¢ Tag Cloud
EMBED BLOCKS:
ā€¢ Embed
ā€¢ Twitter
ā€¢ YouTube
ā€¢ Facebook
ā€¢ Instagram
ā€¢ WordPress
ā€¢ SoundCloud
ā€¢ Spotify
ā€¢ Flickr
ā€¢ Vimeo
ā€¢ Animoto
ā€¢ Cloudup
ā€¢ Crowdsignal
ā€¢ DailyMotion
ā€¢ Hulu
ā€¢ Imgur
ā€¢ Issuu
ā€¢ Kickstarter
ā€¢ Meetup
ā€¢ Mixcloud
ā€¢ Reddit
ā€¢ and on and
onā€¦
BLOCK CONTROLS:
For each block there are controls
found in the right column which
allows further modification of the
contents of that block.
Advanced controls allow for a class to
be attached to the block.
MORE BLOCK CONTROLS
Blocks can be re-
positioned either by
clicking and dragging (via
6 dot icon) or the up and
down arrows.
Some blocks will have
controls in the block
region as well as in the
right column
WORDPRESS DATA STRUCTURE:
DEFAULT FIELDS:
PRIMARY SECONDARY TERTIARY
Title
Content
Excerpt
Author
Post Date
Comments
Publication Status
Featured Image
Post Type
Comment Status
Comment Count
Ping Status
Modified Date
Menu Order
Post Password
COMMON THEME TEMPLATES:
PRIMARY SECONDARY TERTIARY
Index
Page
Post
Header
Footer
Sidebar
Archive
Category
Tag Archive
Featured Image
Alternate Page Templates
Alternate Post Templates
DYNAMIC CONTENT:
Extracting content via queries:
ā€¢ Home/Landing pages
ā€¢ Archive Arrays
ā€¢ Search Results
EXTENDING FUNCTIONALITY:
PLUGIN TYPES:
As of 1/14/2020 there are 55,287 plugins on
wordpress.org
ā€¢ FORMS
ā€¢ CALENDARS
ā€¢ E-COMMERCE
ā€¢ SEO
ā€¢ BACKUPS
ā€¢ SECURITY
ā€¢ CACHING
ā€¢ EXTENDING FIELDS
CHOOSING A PLUGIN:
PAY ATTENTION TO:
ā€¢ How current is the plugin
ā€¢ Is it in compliance with
WordPress core
ā€¢ Read both the good and bad
reviews
ā€¢ How popular is the plugin
HOW IS SUPPORT HANDLED:
RECOMMENDED PLUGINS:
COMMENT FILTERING
Akismet https://wordpress.org/plugins/akismet/
FORMS
Contact Form 7 https://wordpress.org/plugins/contact-form-7/
Ninja Forms https://wordpress.org/plugins/ninja-forms/
EVENTS
Events Calendar https://wordpress.org/plugins/the-events-calendar/
All in One Calendar https://wordpress.org/plugins/all-in-one-event-calendar/
E-COMMERCE
WooCommerce https://wordpress.org/plugins/woocommerce/
EDD https://wordpress.org/plugins/easy-digital-downloads/
SEO
Yoast SEO https://wordpress.org/plugins/wordpress-seo/
All in One SEO https://wordpress.org/plugins/all-in-one-seo-pack/
BACKUPS
Updraft https://wordpress.org/plugins/updraftplus/
Duplicator: https://wordpress.org/plugins/duplicator/
IMAGE CONTROL
Smush https://wordpress.org/plugins/wp-smushit/
EWWW https://wordpress.org/plugins/ewww-image-optimizer/
SECURITY
Wordfence https://wordpress.org/plugins/wordfence/
All in One https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/
CACHING
W3 Total Cache https://wordpress.org/plugins/w3-total-cache/
Lite Speed Cache https://wordpress.org/plugins/litespeed-cache/
EXTENDING FIELDS
ACF https://wordpress.org/plugins/advanced-custom-fields/
PODS https://wordpress.org/plugins/pods/
CHOOSING A THEME:
SHOWCASE THEMES FROM
WORDPRESS.ORG:
Almost every year the
WordPress Project
releases a new core
theme which showcases
the latest developments
in core.
These themes work well
with the child-theming
process
ASSESS THEMES LIKE PLUGINS:
PAY ATTENTION TO:
ā€¢ How current is the theme
ā€¢ Is it in compliance with
WordPress core
ā€¢ Read both the good and bad
reviews
ā€¢ How popular is the theme
HOW IS SUPPORT HANDLED:
Many of the most popular themes on
the repository will be supported by the
general community ā€¦ not necessarily
the plugin authors
ā€œPREMIUM THEMESā€:
To be accepted into the
Wordpress.org repository a
theme needs to pass
vigorous standards.
Premium Theme sources
Set their own standards
THEME MODIFICATION:
CUSTOMIZER:
ļƒž Appearace
ļƒž Customizer
Controls will vary based on the theme.
Additional CSS Panel allows for CSS overrides
CHILD THEME:
https://developer.wordpress.org/themes/advanced-topics/child-themes/#how-to-create-a-child-theme
What is a Parent Theme?
A parent theme is a complete theme which includes all of the required WordPress template
files and assets for the theme to work.
What is a Child Theme?
A child theme inherits the look and feel of the parent theme and all of its functions, but can
be used to make modifications to any part of the theme. In this way, customizations are kept
separate from the parent themeā€™s files. Using a child theme lets you upgrade the parent
theme without affecting the customizations youā€™ve made to your site.
How to Create a Child Theme
1. Create a child theme folder
2. Create a stylesheet: style.css
3. Enqueue stylesheet
BASELINE THEMES:
A baseline theme has all the elements you need, but will generally be unusable until you
modify them:
https://underscores.me/
ā€œa theme meant for hacking with ultra-minimal CSS - less stuff to get in your wayā€
https://themble.com/bones/
ā€œbuilt around the latest in Web Standards, Bones is a rock solid foundation to start any
WordPress projectā€
http://html5blank.com/
ā€œan open source boilerplate theme for WordPressā€
TYPICAL ISSUES SEEN:
PLUGIN BLOAT:
ā€¢ Only one plugin per function
ā€¢ Plugins with a finite purpose
ā€¢ Un-Supported Plugins
ā€¢ Premium Plugins with expired licenses
CONTENT ORGANIZATION:
ā€¢ Pages should be used sparingly
ā€¢ Posts should be organized in a logical category
manner
ā€¢ Many site authors over-use tags
ā€¢ Orphan drafts and abandoned content should
be deleted
ā€¢ Media files should have a logical naming
convention
IMAGE FILE SIZE:
While WordPress does resize images into four sizes (thumbnail, medium,
medium large, large) upon upload, optimizing before upload is still crucial:
FREE IMAGE OPTIMIZATION TOOLS:
https://www.gimp.org/
tools needed for high quality image manipulation
https://squoosh.app/
Compress and compare images with different codecs, right in your browser.
https://pixlr.com/editor/
runs on flash
MAINTAINING YOUR SITE
QUESTIONS?
Jeff McNear
ā€¢ https://plasterdog.com
ā€¢ https://webprosmeetup.org/
ā€¢ jeff@plasterdog.com
ā€¢ 847/849-7060

More Related Content

What's hot

Hyperlink.85 to 86
Hyperlink.85 to 86Hyperlink.85 to 86
Hyperlink.85 to 86myrajendra
Ā 
Introduction to WordPress
Introduction to WordPressIntroduction to WordPress
Introduction to WordPressNadine Wildmann
Ā 
Slides 3 - Wordpress Networks Sites
Slides 3 - Wordpress Networks SitesSlides 3 - Wordpress Networks Sites
Slides 3 - Wordpress Networks SitesMassimo Callisto
Ā 
My Site is slow - Drupal Camp London 2013
My Site is slow - Drupal Camp London 2013My Site is slow - Drupal Camp London 2013
My Site is slow - Drupal Camp London 2013hernanibf
Ā 
Wordpress 101 Training
Wordpress 101 TrainingWordpress 101 Training
Wordpress 101 TrainingHappy Marketer
Ā 
Alice Phieu - WordPress For Beginners
Alice Phieu - WordPress For BeginnersAlice Phieu - WordPress For Beginners
Alice Phieu - WordPress For BeginnersAlice Phieu
Ā 
WordPress can do that?!
WordPress can do that?!WordPress can do that?!
WordPress can do that?!Scott McNulty
Ā 
Wordpress beyond blogging
Wordpress beyond bloggingWordpress beyond blogging
Wordpress beyond bloggingJulien Minguely
Ā 
Beginning WordPress Workshop
Beginning WordPress WorkshopBeginning WordPress Workshop
Beginning WordPress WorkshopThe Toolbox, Inc.
Ā 
WordPress Theme Development Basics
WordPress Theme Development BasicsWordPress Theme Development Basics
WordPress Theme Development BasicsTech Liminal
Ā 
WordPress Installation Tutorial - How to Install WordPress manually
WordPress Installation Tutorial - How to Install WordPress manuallyWordPress Installation Tutorial - How to Install WordPress manually
WordPress Installation Tutorial - How to Install WordPress manuallyBalaji kaliamoorthy
Ā 
WEB I - 01 - Introduction to Web Development
WEB I - 01 - Introduction to Web DevelopmentWEB I - 01 - Introduction to Web Development
WEB I - 01 - Introduction to Web DevelopmentRandy Connolly
Ā 
Alternatives to LMS and Content development
Alternatives to LMS and Content developmentAlternatives to LMS and Content development
Alternatives to LMS and Content developmentYum Studio
Ā 
Wordpress for Beginners: 10 Must Knows
Wordpress for Beginners: 10 Must KnowsWordpress for Beginners: 10 Must Knows
Wordpress for Beginners: 10 Must KnowsTechWyseInternetMarketing
Ā 
Webnet Presentation
Webnet PresentationWebnet Presentation
Webnet PresentationTrish Roque
Ā 
Part1 learn thelingo
Part1 learn thelingoPart1 learn thelingo
Part1 learn thelingoTaneya Koonce
Ā 

What's hot (20)

Hyperlink.85 to 86
Hyperlink.85 to 86Hyperlink.85 to 86
Hyperlink.85 to 86
Ā 
W pthemes
W pthemesW pthemes
W pthemes
Ā 
Introduction to WordPress
Introduction to WordPressIntroduction to WordPress
Introduction to WordPress
Ā 
Slides 3 - Wordpress Networks Sites
Slides 3 - Wordpress Networks SitesSlides 3 - Wordpress Networks Sites
Slides 3 - Wordpress Networks Sites
Ā 
My Site is slow - Drupal Camp London 2013
My Site is slow - Drupal Camp London 2013My Site is slow - Drupal Camp London 2013
My Site is slow - Drupal Camp London 2013
Ā 
Wordpress 101 Training
Wordpress 101 TrainingWordpress 101 Training
Wordpress 101 Training
Ā 
Alice Phieu - WordPress For Beginners
Alice Phieu - WordPress For BeginnersAlice Phieu - WordPress For Beginners
Alice Phieu - WordPress For Beginners
Ā 
WordPress can do that?!
WordPress can do that?!WordPress can do that?!
WordPress can do that?!
Ā 
Wordpress beyond blogging
Wordpress beyond bloggingWordpress beyond blogging
Wordpress beyond blogging
Ā 
Beginning WordPress Workshop
Beginning WordPress WorkshopBeginning WordPress Workshop
Beginning WordPress Workshop
Ā 
WordPress Theme Development Basics
WordPress Theme Development BasicsWordPress Theme Development Basics
WordPress Theme Development Basics
Ā 
Open Source CMS
Open Source CMSOpen Source CMS
Open Source CMS
Ā 
WordPress Installation Tutorial - How to Install WordPress manually
WordPress Installation Tutorial - How to Install WordPress manuallyWordPress Installation Tutorial - How to Install WordPress manually
WordPress Installation Tutorial - How to Install WordPress manually
Ā 
Wordpress 101
Wordpress 101Wordpress 101
Wordpress 101
Ā 
WEB I - 01 - Introduction to Web Development
WEB I - 01 - Introduction to Web DevelopmentWEB I - 01 - Introduction to Web Development
WEB I - 01 - Introduction to Web Development
Ā 
Alternatives to LMS and Content development
Alternatives to LMS and Content developmentAlternatives to LMS and Content development
Alternatives to LMS and Content development
Ā 
Wordpress for Beginners: 10 Must Knows
Wordpress for Beginners: 10 Must KnowsWordpress for Beginners: 10 Must Knows
Wordpress for Beginners: 10 Must Knows
Ā 
Webnet Presentation
Webnet PresentationWebnet Presentation
Webnet Presentation
Ā 
Part1 learn thelingo
Part1 learn thelingoPart1 learn thelingo
Part1 learn thelingo
Ā 
72d5drupal
72d5drupal72d5drupal
72d5drupal
Ā 

Similar to Wordpress overview

The WordPress University
The WordPress UniversityThe WordPress University
The WordPress UniversityStephanie Leary
Ā 
WordPress - Open Source Overview Presentation
WordPress - Open Source Overview PresentationWordPress - Open Source Overview Presentation
WordPress - Open Source Overview PresentationAndy Stratton
Ā 
WordPress Themes and Plugins
WordPress Themes and PluginsWordPress Themes and Plugins
WordPress Themes and Pluginssuperann
Ā 
Open Source CMS Playroom
Open Source CMS PlayroomOpen Source CMS Playroom
Open Source CMS Playroomlibrarywebchic
Ā 
full-site-editing-theme-presentation.pptx
full-site-editing-theme-presentation.pptxfull-site-editing-theme-presentation.pptx
full-site-editing-theme-presentation.pptxPlasterdog Web Design
Ā 
Wordpress website development
Wordpress website developmentWordpress website development
Wordpress website developmentJohn Faust
Ā 
WordPress as a CMS
WordPress as a CMSWordPress as a CMS
WordPress as a CMSStephanie Leary
Ā 
Newspapers with WordPress
Newspapers with WordPressNewspapers with WordPress
Newspapers with WordPresschristopherfross
Ā 
WCBos13 intermediate workshop
WCBos13 intermediate workshopWCBos13 intermediate workshop
WCBos13 intermediate workshopBoston WordPress
Ā 
From WordPress With Love
From WordPress With LoveFrom WordPress With Love
From WordPress With LoveUp2 Technology
Ā 
A11y Conference Talk: Building an Accessible WordPress Theme
A11y Conference Talk: Building an Accessible WordPress ThemeA11y Conference Talk: Building an Accessible WordPress Theme
A11y Conference Talk: Building an Accessible WordPress ThemeTomAuger
Ā 
Content-Driven WordPress Development - WordCamp Omaha 2014
Content-Driven WordPress Development - WordCamp Omaha 2014Content-Driven WordPress Development - WordCamp Omaha 2014
Content-Driven WordPress Development - WordCamp Omaha 2014Stephanie Eckles
Ā 
Keep Your Code Organized! WordCamp Montreal 2013 Presentation slides
Keep Your Code Organized! WordCamp Montreal 2013 Presentation slidesKeep Your Code Organized! WordCamp Montreal 2013 Presentation slides
Keep Your Code Organized! WordCamp Montreal 2013 Presentation slidesJer Clarke
Ā 
WordPress Intermediate Workshop
WordPress Intermediate WorkshopWordPress Intermediate Workshop
WordPress Intermediate WorkshopThe Toolbox, Inc.
Ā 
Wordpress theme development
Wordpress theme developmentWordpress theme development
Wordpress theme developmentNaeem Junejo
Ā 
Starting WordPress Theme Review
Starting WordPress Theme ReviewStarting WordPress Theme Review
Starting WordPress Theme ReviewCatch Themes
Ā 
Getting started with CSS frameworks using Zurb foundation
Getting started with CSS frameworks using Zurb foundationGetting started with CSS frameworks using Zurb foundation
Getting started with CSS frameworks using Zurb foundationMelanie Archer
Ā 
Wordpress intro
Wordpress introWordpress intro
Wordpress introthe-colab
Ā 
The Flexibility of WordPress
The Flexibility of WordPressThe Flexibility of WordPress
The Flexibility of WordPressStephanie Eckles
Ā 

Similar to Wordpress overview (20)

The WordPress University
The WordPress UniversityThe WordPress University
The WordPress University
Ā 
WordPress - Open Source Overview Presentation
WordPress - Open Source Overview PresentationWordPress - Open Source Overview Presentation
WordPress - Open Source Overview Presentation
Ā 
WordPress Themes and Plugins
WordPress Themes and PluginsWordPress Themes and Plugins
WordPress Themes and Plugins
Ā 
Open Source CMS Playroom
Open Source CMS PlayroomOpen Source CMS Playroom
Open Source CMS Playroom
Ā 
full-site-editing-theme-presentation.pptx
full-site-editing-theme-presentation.pptxfull-site-editing-theme-presentation.pptx
full-site-editing-theme-presentation.pptx
Ā 
Wordpress website development
Wordpress website developmentWordpress website development
Wordpress website development
Ā 
WordPress as a CMS
WordPress as a CMSWordPress as a CMS
WordPress as a CMS
Ā 
WordPress Complete Tutorial
WordPress Complete TutorialWordPress Complete Tutorial
WordPress Complete Tutorial
Ā 
Newspapers with WordPress
Newspapers with WordPressNewspapers with WordPress
Newspapers with WordPress
Ā 
WCBos13 intermediate workshop
WCBos13 intermediate workshopWCBos13 intermediate workshop
WCBos13 intermediate workshop
Ā 
From WordPress With Love
From WordPress With LoveFrom WordPress With Love
From WordPress With Love
Ā 
A11y Conference Talk: Building an Accessible WordPress Theme
A11y Conference Talk: Building an Accessible WordPress ThemeA11y Conference Talk: Building an Accessible WordPress Theme
A11y Conference Talk: Building an Accessible WordPress Theme
Ā 
Content-Driven WordPress Development - WordCamp Omaha 2014
Content-Driven WordPress Development - WordCamp Omaha 2014Content-Driven WordPress Development - WordCamp Omaha 2014
Content-Driven WordPress Development - WordCamp Omaha 2014
Ā 
Keep Your Code Organized! WordCamp Montreal 2013 Presentation slides
Keep Your Code Organized! WordCamp Montreal 2013 Presentation slidesKeep Your Code Organized! WordCamp Montreal 2013 Presentation slides
Keep Your Code Organized! WordCamp Montreal 2013 Presentation slides
Ā 
WordPress Intermediate Workshop
WordPress Intermediate WorkshopWordPress Intermediate Workshop
WordPress Intermediate Workshop
Ā 
Wordpress theme development
Wordpress theme developmentWordpress theme development
Wordpress theme development
Ā 
Starting WordPress Theme Review
Starting WordPress Theme ReviewStarting WordPress Theme Review
Starting WordPress Theme Review
Ā 
Getting started with CSS frameworks using Zurb foundation
Getting started with CSS frameworks using Zurb foundationGetting started with CSS frameworks using Zurb foundation
Getting started with CSS frameworks using Zurb foundation
Ā 
Wordpress intro
Wordpress introWordpress intro
Wordpress intro
Ā 
The Flexibility of WordPress
The Flexibility of WordPressThe Flexibility of WordPress
The Flexibility of WordPress
Ā 

More from Plasterdog Web Design

More from Plasterdog Web Design (6)

Build and save your own Gutenberg Block Patterns
Build and save your own Gutenberg Block PatternsBuild and save your own Gutenberg Block Patterns
Build and save your own Gutenberg Block Patterns
Ā 
Pantheon basics
Pantheon basicsPantheon basics
Pantheon basics
Ā 
Wordpress Security & Hardening Steps
Wordpress Security & Hardening StepsWordpress Security & Hardening Steps
Wordpress Security & Hardening Steps
Ā 
Basic wordpress editing
Basic wordpress editingBasic wordpress editing
Basic wordpress editing
Ā 
Youtube Basics
Youtube BasicsYoutube Basics
Youtube Basics
Ā 
Wordpress multisite
Wordpress multisiteWordpress multisite
Wordpress multisite
Ā 

Recently uploaded

Chennai Call Girls Alwarpet Phone šŸ† 8250192130 šŸ‘… celebrity escorts service
Chennai Call Girls Alwarpet Phone šŸ† 8250192130 šŸ‘… celebrity escorts serviceChennai Call Girls Alwarpet Phone šŸ† 8250192130 šŸ‘… celebrity escorts service
Chennai Call Girls Alwarpet Phone šŸ† 8250192130 šŸ‘… celebrity escorts servicevipmodelshub1
Ā 
ā‚¹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] šŸ”|97111...
ā‚¹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] šŸ”|97111...ā‚¹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] šŸ”|97111...
ā‚¹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] šŸ”|97111...Diya Sharma
Ā 
Call Now ā˜Ž 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ā˜Ž 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ā˜Ž 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ā˜Ž 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.soniya singh
Ā 
Call Girls In Defence Colony Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”
Call Girls In Defence Colony Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”Call Girls In Defence Colony Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”
Call Girls In Defence Colony Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”soniya singh
Ā 
VIP Kolkata Call Girl Salt Lake šŸ‘‰ 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake šŸ‘‰ 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake šŸ‘‰ 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake šŸ‘‰ 8250192130 Available With Roomishabajaj13
Ā 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Roomgirls4nights
Ā 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxellan12
Ā 
Call Girls In Saket Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”
Call Girls In Saket Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”Call Girls In Saket Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”
Call Girls In Saket Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”soniya singh
Ā 
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...aditipandeya
Ā 
Call Girls Service Chandigarh Lucky ā¤ļø 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ā¤ļø 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ā¤ļø 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ā¤ļø 7710465962 Independent Call Girls In C...Sheetaleventcompany
Ā 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$kojalkojal131
Ā 
Chennai Call Girls Porur Phone šŸ† 8250192130 šŸ‘… celebrity escorts service
Chennai Call Girls Porur Phone šŸ† 8250192130 šŸ‘… celebrity escorts serviceChennai Call Girls Porur Phone šŸ† 8250192130 šŸ‘… celebrity escorts service
Chennai Call Girls Porur Phone šŸ† 8250192130 šŸ‘… celebrity escorts servicesonalikaur4
Ā 
VIP Call Girls Kolkata Ananya šŸ¤Œ 8250192130 šŸš€ Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya šŸ¤Œ  8250192130 šŸš€ Vip Call Girls KolkataVIP Call Girls Kolkata Ananya šŸ¤Œ  8250192130 šŸš€ Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya šŸ¤Œ 8250192130 šŸš€ Vip Call Girls Kolkataanamikaraghav4
Ā 
VIP Kolkata Call Girl Alambazar šŸ‘‰ 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar šŸ‘‰ 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar šŸ‘‰ 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar šŸ‘‰ 8250192130 Available With Roomdivyansh0kumar0
Ā 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girladitipandeya
Ā 
Radiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsRadiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsstephieert
Ā 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
Ā 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)Damian Radcliffe
Ā 

Recently uploaded (20)

Chennai Call Girls Alwarpet Phone šŸ† 8250192130 šŸ‘… celebrity escorts service
Chennai Call Girls Alwarpet Phone šŸ† 8250192130 šŸ‘… celebrity escorts serviceChennai Call Girls Alwarpet Phone šŸ† 8250192130 šŸ‘… celebrity escorts service
Chennai Call Girls Alwarpet Phone šŸ† 8250192130 šŸ‘… celebrity escorts service
Ā 
ā‚¹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] šŸ”|97111...
ā‚¹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] šŸ”|97111...ā‚¹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] šŸ”|97111...
ā‚¹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] šŸ”|97111...
Ā 
Call Now ā˜Ž 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ā˜Ž 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ā˜Ž 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ā˜Ž 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Ā 
Call Girls In Defence Colony Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”
Call Girls In Defence Colony Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”Call Girls In Defence Colony Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”
Call Girls In Defence Colony Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”
Ā 
VIP Kolkata Call Girl Salt Lake šŸ‘‰ 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake šŸ‘‰ 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake šŸ‘‰ 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake šŸ‘‰ 8250192130 Available With Room
Ā 
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With RoomVIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
VIP Kolkata Call Girls Salt Lake 8250192130 Available With Room
Ā 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
Ā 
Call Girls In Saket Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”
Call Girls In Saket Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”Call Girls In Saket Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”
Call Girls In Saket Delhi šŸ’ÆCall Us šŸ”8264348440šŸ”
Ā 
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
Ā 
Call Girls Service Chandigarh Lucky ā¤ļø 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ā¤ļø 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ā¤ļø 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ā¤ļø 7710465962 Independent Call Girls In C...
Ā 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Ā 
Chennai Call Girls Porur Phone šŸ† 8250192130 šŸ‘… celebrity escorts service
Chennai Call Girls Porur Phone šŸ† 8250192130 šŸ‘… celebrity escorts serviceChennai Call Girls Porur Phone šŸ† 8250192130 šŸ‘… celebrity escorts service
Chennai Call Girls Porur Phone šŸ† 8250192130 šŸ‘… celebrity escorts service
Ā 
VIP Call Girls Kolkata Ananya šŸ¤Œ 8250192130 šŸš€ Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya šŸ¤Œ  8250192130 šŸš€ Vip Call Girls KolkataVIP Call Girls Kolkata Ananya šŸ¤Œ  8250192130 šŸš€ Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya šŸ¤Œ 8250192130 šŸš€ Vip Call Girls Kolkata
Ā 
VIP Kolkata Call Girl Alambazar šŸ‘‰ 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar šŸ‘‰ 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar šŸ‘‰ 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar šŸ‘‰ 8250192130 Available With Room
Ā 
Model Call Girl in Jamuna Vihar Delhi reach out to us at šŸ”9953056974šŸ”
Model Call Girl in  Jamuna Vihar Delhi reach out to us at šŸ”9953056974šŸ”Model Call Girl in  Jamuna Vihar Delhi reach out to us at šŸ”9953056974šŸ”
Model Call Girl in Jamuna Vihar Delhi reach out to us at šŸ”9953056974šŸ”
Ā 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
Ā 
Radiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsRadiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girls
Ā 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
Ā 
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Ā 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)
Ā 

Wordpress overview

  • 1. WORDPRESS SITE BUILDING BASICS Jeff McNear ā€¢ https://plasterdog.com ā€¢ https://webprosmeetup.org/ ā€¢ jeff@plasterdog.com ā€¢ 847/849-7060 ā€¢ Focus on building customized WordPress installations & custom themes ā€¢ Building & repairing WordPress sites since before WordPress 3.0 ā€¢ Have significant exposure to Joomla, Drupal, PHP Fusion, ZenCart ā€¦ and some others
  • 2. Itā€™s best to know how a thing works before you start to modify it ā€¦
  • 6. CORE CODE IS AUGMENTED VIA MODULE COMPONENTS:
  • 8. NON CORE FILES ARE IN WP-CONTENT
  • 10. THE THEME DEFINES A CONSISTENT LAYOUT
  • 12. PAGES: ā€¢ Stand-alone content ā€¢ More likely to have alternative templates ā€¢ Can have parent/child relationship ā€¢ No relevant taxonomies
  • 13. POSTS: ā€¢ Two associated taxonomies: categories & tags ā€¢ May have alternative templates as well ā€¢ Themes contain template configurations for taxonomy archives ā€¢ Content can be shown in a dynamic way
  • 14. TAXONOMIES: CATEGORIES ā€¢ Can be hierarchical ā€¢ Multiple selections allowed ā€¢ Unique archive template(s) TAGS ā€¢ No hierarchy ā€¢ Multiple selections allowed ā€¢ Unique archive template(s) ā€¢ Often incorrectly used
  • 15. MENUS: => Appearance => Menus ā€¢ Can be assigned by region or via widget ā€¢ Any existing content or archive is selectable ā€¢ Theme controls the behavior and styling
  • 16. WIDGETS: => Appearance => Widgets ā€¢ Many default options ā€¢ Plugins will often add their own widget ā€¢ The Theme defines the widget regions
  • 17. MEDIA: => Media ā€¢ Any uploaded file is considered media ā€¢ Images are rendered into three sizes upon upload ā€¢ Default behavior is to structure files into folders defined by month ā€¢ A good naming convention can be crucial
  • 18. SITE NAME & TAGLINE: => Settings => General ā€¢ Important for SEO even if the theme doesnā€™t show the fields on the ā€œfront endā€
  • 19. READING SETTINGS: => Settings => Reading ā€¢ Determines the landing page ā€¢ Determines whether the site is exposed to indexing ā€¢ Determines the number of posts shown in an archive
  • 20. PERMALINK SETTINGS: => Settings => Permalinks ā€¢ In most cases ā€œpost nameā€ is preferred ā€¢ Changing this after site launch could cause SEO issues
  • 21. DISCUSSION SETTINGS: => Settings => Discussion ā€¢ If you arenā€™t encouraging comments, shut things down ā€¢ If comments are allowed moderate them ā€¢ Akismet is crucial
  • 22. MEDIA SETTINGS: => Settings => Media ā€¢ Default sizes usually are just fine ā€¢ If you change them after the site is launched you will need the ā€œregenerate thumbnailsā€ plugin
  • 23. USER PERMISSIONS: => Users ā€¢ By default user permissions define editorial permissions ā€¢ The ā€œsubscriberā€ role allows validated user to see ā€œprivateā€ content
  • 24. DEFAULT USER LEVELS: ā€¢ Administrator ā€“ somebody who has access to all the administration features within a single site. ā€¢ Editor ā€“ somebody who can publish and manage posts including the posts of other users. ā€¢ Author ā€“ somebody who can publish and manage their own posts. ā€¢ Contributor ā€“ somebody who can write and manage their own posts but cannot publish them. ā€¢ Subscriber ā€“ somebody who can only manage their profile.
  • 26. COMMON BLOCKS: ā€¢ Paragraph ā€¢ Image ā€¢ Heading ā€¢ Gallery ā€¢ List ā€¢ Quote ā€¢ Audio ā€¢ Cover ā€¢ File ā€¢ Video
  • 27. FORMATTING BLOCKS: ā€¢ Code ā€¢ Classic ā€¢ Custom HTML ā€¢ Preformatted ā€¢ Pullquote ā€¢ Table ā€¢ Verse
  • 28. LAYOUT BLOCKS: ā€¢ Button ā€¢ Columns ā€¢ Group ā€¢ Media & Text ā€¢ More ā€¢ Page Break ā€¢ Seperator ā€¢ Spacer
  • 29. WIDGET BLOCKS: ā€¢ Shortcode ā€¢ Archives ā€¢ Calendar ā€¢ Categories ā€¢ Latest Comments ā€¢ Latest Posts ā€¢ RSS ā€¢ Search ā€¢ Tag Cloud
  • 30. EMBED BLOCKS: ā€¢ Embed ā€¢ Twitter ā€¢ YouTube ā€¢ Facebook ā€¢ Instagram ā€¢ WordPress ā€¢ SoundCloud ā€¢ Spotify ā€¢ Flickr ā€¢ Vimeo ā€¢ Animoto ā€¢ Cloudup ā€¢ Crowdsignal ā€¢ DailyMotion ā€¢ Hulu ā€¢ Imgur ā€¢ Issuu ā€¢ Kickstarter ā€¢ Meetup ā€¢ Mixcloud ā€¢ Reddit ā€¢ and on and onā€¦
  • 31. BLOCK CONTROLS: For each block there are controls found in the right column which allows further modification of the contents of that block. Advanced controls allow for a class to be attached to the block.
  • 32. MORE BLOCK CONTROLS Blocks can be re- positioned either by clicking and dragging (via 6 dot icon) or the up and down arrows. Some blocks will have controls in the block region as well as in the right column
  • 34. DEFAULT FIELDS: PRIMARY SECONDARY TERTIARY Title Content Excerpt Author Post Date Comments Publication Status Featured Image Post Type Comment Status Comment Count Ping Status Modified Date Menu Order Post Password
  • 35. COMMON THEME TEMPLATES: PRIMARY SECONDARY TERTIARY Index Page Post Header Footer Sidebar Archive Category Tag Archive Featured Image Alternate Page Templates Alternate Post Templates
  • 36. DYNAMIC CONTENT: Extracting content via queries: ā€¢ Home/Landing pages ā€¢ Archive Arrays ā€¢ Search Results
  • 38. PLUGIN TYPES: As of 1/14/2020 there are 55,287 plugins on wordpress.org ā€¢ FORMS ā€¢ CALENDARS ā€¢ E-COMMERCE ā€¢ SEO ā€¢ BACKUPS ā€¢ SECURITY ā€¢ CACHING ā€¢ EXTENDING FIELDS
  • 39. CHOOSING A PLUGIN: PAY ATTENTION TO: ā€¢ How current is the plugin ā€¢ Is it in compliance with WordPress core ā€¢ Read both the good and bad reviews ā€¢ How popular is the plugin
  • 40. HOW IS SUPPORT HANDLED:
  • 41. RECOMMENDED PLUGINS: COMMENT FILTERING Akismet https://wordpress.org/plugins/akismet/ FORMS Contact Form 7 https://wordpress.org/plugins/contact-form-7/ Ninja Forms https://wordpress.org/plugins/ninja-forms/ EVENTS Events Calendar https://wordpress.org/plugins/the-events-calendar/ All in One Calendar https://wordpress.org/plugins/all-in-one-event-calendar/ E-COMMERCE WooCommerce https://wordpress.org/plugins/woocommerce/ EDD https://wordpress.org/plugins/easy-digital-downloads/ SEO Yoast SEO https://wordpress.org/plugins/wordpress-seo/ All in One SEO https://wordpress.org/plugins/all-in-one-seo-pack/
  • 42. BACKUPS Updraft https://wordpress.org/plugins/updraftplus/ Duplicator: https://wordpress.org/plugins/duplicator/ IMAGE CONTROL Smush https://wordpress.org/plugins/wp-smushit/ EWWW https://wordpress.org/plugins/ewww-image-optimizer/ SECURITY Wordfence https://wordpress.org/plugins/wordfence/ All in One https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/ CACHING W3 Total Cache https://wordpress.org/plugins/w3-total-cache/ Lite Speed Cache https://wordpress.org/plugins/litespeed-cache/ EXTENDING FIELDS ACF https://wordpress.org/plugins/advanced-custom-fields/ PODS https://wordpress.org/plugins/pods/
  • 44. SHOWCASE THEMES FROM WORDPRESS.ORG: Almost every year the WordPress Project releases a new core theme which showcases the latest developments in core. These themes work well with the child-theming process
  • 45. ASSESS THEMES LIKE PLUGINS: PAY ATTENTION TO: ā€¢ How current is the theme ā€¢ Is it in compliance with WordPress core ā€¢ Read both the good and bad reviews ā€¢ How popular is the theme
  • 46. HOW IS SUPPORT HANDLED: Many of the most popular themes on the repository will be supported by the general community ā€¦ not necessarily the plugin authors
  • 47. ā€œPREMIUM THEMESā€: To be accepted into the Wordpress.org repository a theme needs to pass vigorous standards. Premium Theme sources Set their own standards
  • 49. CUSTOMIZER: ļƒž Appearace ļƒž Customizer Controls will vary based on the theme. Additional CSS Panel allows for CSS overrides
  • 50. CHILD THEME: https://developer.wordpress.org/themes/advanced-topics/child-themes/#how-to-create-a-child-theme What is a Parent Theme? A parent theme is a complete theme which includes all of the required WordPress template files and assets for the theme to work. What is a Child Theme? A child theme inherits the look and feel of the parent theme and all of its functions, but can be used to make modifications to any part of the theme. In this way, customizations are kept separate from the parent themeā€™s files. Using a child theme lets you upgrade the parent theme without affecting the customizations youā€™ve made to your site. How to Create a Child Theme 1. Create a child theme folder 2. Create a stylesheet: style.css 3. Enqueue stylesheet
  • 51. BASELINE THEMES: A baseline theme has all the elements you need, but will generally be unusable until you modify them: https://underscores.me/ ā€œa theme meant for hacking with ultra-minimal CSS - less stuff to get in your wayā€ https://themble.com/bones/ ā€œbuilt around the latest in Web Standards, Bones is a rock solid foundation to start any WordPress projectā€ http://html5blank.com/ ā€œan open source boilerplate theme for WordPressā€
  • 53. PLUGIN BLOAT: ā€¢ Only one plugin per function ā€¢ Plugins with a finite purpose ā€¢ Un-Supported Plugins ā€¢ Premium Plugins with expired licenses
  • 54. CONTENT ORGANIZATION: ā€¢ Pages should be used sparingly ā€¢ Posts should be organized in a logical category manner ā€¢ Many site authors over-use tags ā€¢ Orphan drafts and abandoned content should be deleted ā€¢ Media files should have a logical naming convention
  • 55. IMAGE FILE SIZE: While WordPress does resize images into four sizes (thumbnail, medium, medium large, large) upon upload, optimizing before upload is still crucial: FREE IMAGE OPTIMIZATION TOOLS: https://www.gimp.org/ tools needed for high quality image manipulation https://squoosh.app/ Compress and compare images with different codecs, right in your browser. https://pixlr.com/editor/ runs on flash
  • 57. QUESTIONS? Jeff McNear ā€¢ https://plasterdog.com ā€¢ https://webprosmeetup.org/ ā€¢ jeff@plasterdog.com ā€¢ 847/849-7060