AI-powered live chat + SEO/AEO/Geo content - take your website to the next level!

How to Add Meta Keywords in WordPress Without Plugin

seo keywords
Contents

Adding meta keywords in WordPress without a plugin can seem tricky for beginners, but with a few simple steps, you can optimize your site effectively. While meta keywords are not as influential as they once were for SEO, they still help you organize content and signal relevance to search engines. In this guide, we’ll show you actionable methods to add meta keywords directly in WordPress without relying on third-party plugins.

Why Meta Keywords Are Less Critical Today

Google does not use meta keywords for ranking, but manually adding them can:

  • Help track your content strategy internally
  • Support optimization for search engines that still reference them
  • Keep your keyword usage consistent across pages

For authoritative references, check Google developer documentation on Meta Tags and Bing Webmaster Guidelines.

Step 1 – Prepare Your Keywords

Before adding meta keywords, gather your primary keyword and 3–5 secondary keywords. For example:

  • Primary keyword: how to add meta keywords in WordPress without plugin
  • Secondary keywords: WordPress SEO, meta tags, manual SEO, meta description optimization

Arrange them in a comma-separated list and ensure they align with your page content.

Step 2 – Add Meta Keywords via WordPress Theme

You can add meta keywords directly by editing your theme’s header.php file:

  1. Go to Appearance → Theme Editor
  2. Open header.php
  3. Insert this code inside the <head> section:
<meta name="keywords" content="how to add meta keywords in WordPress without plugin, WordPress SEO, meta tags, manual SEO, meta description optimization">
  1. Save changes and clear your cache.

⚠️ Use a child theme or back up your site before editing theme files.

Step 3 – Add Meta Keywords Using wp_head

A safer method that prevents issues during theme updates is adding the keywords via the functions.php file:

function add_meta_keywords() {
if (is_single() || is_page()) {
echo '<meta name="keywords" content="how to add meta keywords in WordPress without plugin, WordPress SEO, meta tags, manual SEO, meta description optimization">' . "\n";
}
}
add_action('wp_head', 'add_meta_keywords');

This method keeps your <head> clean and update-proof.

Step 4 – Optimize Your Meta Description

Meta descriptions still influence click-through rates in search results. Tips for effective meta descriptions:

  • Keep it under 160 characters
  • Include your primary keyword naturally
  • Make it engaging and actionable

Example:

<meta name="description" content="Learn how to add meta keywords in WordPress without a plugin. Step-by-step guide for organizing your SEO keywords manually.">

Step 5 – Verify Your Meta Keywords

Check that your meta keywords appear correctly:

  1. Open the page in a browser
  2. Right-click → View Page Source
  3. Search for <meta name="keywords"

This ensures your keywords are implemented properly and visible to search engines that still use them.

Summary

Adding meta keywords manually in WordPress is simple and useful for organizing your SEO strategy, even though Google no longer uses them. Combining this with optimized meta descriptions, structured internal links, and clean code practices ensures your site is well-prepared for all search engines.

Share: