SlideShare a Scribd company logo
“Amping up” your WordPress blog Or, “Taking WordPress to 11”
SEO Call a duck a duck (<h1>, <ul>, etc) Google Sitemap plugin SEO Title plugin <meta name=&quot;robots&quot; content=&quot;noindex,follow&quot; />
<head> [...] <?php if ( is_home() || is_singular() ) { echo '<meta name=&quot;robots&quot; content=&quot;index,follow&quot; />'; } else { echo '<meta name=&quot;robots&quot; content=&quot;noindex,follow&quot; />'; } ?> [...] </head>
Content Keyword sprinkling Descriptive titles “If I wanted to find this post, what would I search for?”
WordPress Performance WP-Cache plugin
General Performance Static files hosted on another domain/box CSS <link />ed in <head /> JS at the end of <body /> Optimize for a better user experience
Plugins Subscribe to Comments Related Posts Clutter Free Akismet Spam Karma 2 Bad Behavior
Spam Management Liberal use of the greylist (moderation list) Careful use of the blacklist Moderate on the fly vs en masse

More Related Content

PPT
XHTML basics
PPTX
Advanced Search Techniques In Google
PPTX
Hints for effective google search
PPT
Google search tips
PPT
Customised Search With Google
PPT
HTML, WordPress, and SEO
PPTX
All About HTML Tags
PPTX
Html5 structure tags
XHTML basics
Advanced Search Techniques In Google
Hints for effective google search
Google search tips
Customised Search With Google
HTML, WordPress, and SEO
All About HTML Tags
Html5 structure tags

Similar to Amping up your WordPress Blog (20)

PPT
WordPress Development Confoo 2010
ODP
Creating Themes
PPT
Система рендеринга в Magento
ODP
The Basics Of Page Creation
PPT
Developing Gadgets
PPT
Html in a box
ODP
SlideShare Instant
PPT
SlideShare Instant
PDF
Various Ways of Using WordPress
PPT
WordCamp Detroit 2010 Wordpress Theme Hacks
ODP
Characterset
ODP
PHPTAL introduction
PPTX
APEX Themes and Templates
PPT
Web Scraping with PHP
PPT
Introduction To Lamp
PPT
Getting More Traffic From Search Advanced Seo For Developers Presentation
PPT
Advanced SEO for Web Developers
WordPress Development Confoo 2010
Creating Themes
Система рендеринга в Magento
The Basics Of Page Creation
Developing Gadgets
Html in a box
SlideShare Instant
SlideShare Instant
Various Ways of Using WordPress
WordCamp Detroit 2010 Wordpress Theme Hacks
Characterset
PHPTAL introduction
APEX Themes and Templates
Web Scraping with PHP
Introduction To Lamp
Getting More Traffic From Search Advanced Seo For Developers Presentation
Advanced SEO for Web Developers
Ad

More from Mark Jaquith (15)

PDF
Cache Money Business
PDF
Scaling WordPress
PDF
Creating and Maintaining WordPress Plugins
PDF
Coding, Scaling, and Deploys... Oh My!
PDF
WordPress Security - WordCamp Phoenix
PDF
WordPress Custom Post Types
PDF
Writing Your First WordPress Plugin
PDF
What I Hate About Wordpress
PDF
Writing Secure Plugins — WordCamp New York 2009
PDF
BuddyPress and the Future of WordPress Plugins
PDF
"State of the Word" at WordCamp Mid-Atlantic, by Mark Jaquith
PDF
Secure Coding With Wordpress (BarCamp Orlando 2009)
PDF
Wordcamp Charlotte: WordPress Today and Tomorrow
PDF
Secure Coding with WordPress - WordCamp SF 2008
PDF
Contributing To WordPress
Cache Money Business
Scaling WordPress
Creating and Maintaining WordPress Plugins
Coding, Scaling, and Deploys... Oh My!
WordPress Security - WordCamp Phoenix
WordPress Custom Post Types
Writing Your First WordPress Plugin
What I Hate About Wordpress
Writing Secure Plugins — WordCamp New York 2009
BuddyPress and the Future of WordPress Plugins
"State of the Word" at WordCamp Mid-Atlantic, by Mark Jaquith
Secure Coding With Wordpress (BarCamp Orlando 2009)
Wordcamp Charlotte: WordPress Today and Tomorrow
Secure Coding with WordPress - WordCamp SF 2008
Contributing To WordPress
Ad

Recently uploaded (20)

PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
Spectroscopy.pptx food analysis technology
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Unlocking AI with Model Context Protocol (MCP)
Programs and apps: productivity, graphics, security and other tools
MIND Revenue Release Quarter 2 2025 Press Release
Encapsulation_ Review paper, used for researhc scholars
Spectroscopy.pptx food analysis technology
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
MYSQL Presentation for SQL database connectivity
Dropbox Q2 2025 Financial Results & Investor Presentation
Mobile App Security Testing_ A Comprehensive Guide.pdf
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
The Rise and Fall of 3GPP – Time for a Sabbatical?
Spectral efficient network and resource selection model in 5G networks
Diabetes mellitus diagnosis method based random forest with bat algorithm
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Advanced methodologies resolving dimensionality complications for autism neur...
20250228 LYD VKU AI Blended-Learning.pptx

Amping up your WordPress Blog

  • 1. “Amping up” your WordPress blog Or, “Taking WordPress to 11”
  • 2. SEO Call a duck a duck (<h1>, <ul>, etc) Google Sitemap plugin SEO Title plugin <meta name=&quot;robots&quot; content=&quot;noindex,follow&quot; />
  • 3. <head> [...] <?php if ( is_home() || is_singular() ) { echo '<meta name=&quot;robots&quot; content=&quot;index,follow&quot; />'; } else { echo '<meta name=&quot;robots&quot; content=&quot;noindex,follow&quot; />'; } ?> [...] </head>
  • 4. Content Keyword sprinkling Descriptive titles “If I wanted to find this post, what would I search for?”
  • 6. General Performance Static files hosted on another domain/box CSS <link />ed in <head /> JS at the end of <body /> Optimize for a better user experience
  • 7. Plugins Subscribe to Comments Related Posts Clutter Free Akismet Spam Karma 2 Bad Behavior
  • 8. Spam Management Liberal use of the greylist (moderation list) Careful use of the blacklist Moderate on the fly vs en masse