Skip to content
Be-smart

Be-smart

  • Home
  • Blog
    • Most Visited Posts
    • Stories
    • Unisex
      • Kids
      • Man
      • Woman
    • ADS
    • Social Media
  • About
    • Contact
  • Login

How to Add Meta Keywords for Single and Homepage in WordPress

Photo of author
Flora
21/01/2025
Views: 19

Estimated Reading Time: 2 min

Meta keywords and meta tags like copyright and author help improve the SEO and metadata structure of your website. While WordPress doesn’t provide built-in support for meta keywords, you can add them manually to your site’s header using the functions php file. Here’s a quick guide to implement it.

Why Add Meta Keywords?

Meta keywords are beneficial for organizing content and signaling important information to search engines. Although modern SEO focuses more on content quality and structure, meta keywords still have value in some contexts.

Adding Meta Keywords to WordPress

Access the functions.php File
Log in to your WordPress admin dashboard, go to Appearance > Theme Editor, and open your theme’s functions.php file.

Insert the Code
Add the following code to include meta keywords for single posts and the homepage:

/* ------------------------------------------------------------------------- *
 * Add Keywords and Meta Descriptions in WordPress.
/* ------------------------------------------------------------------------- */

function add_meta_keywords() {
    if (is_single()) {
        echo '<meta name="keywords" content="keyword1, keyword2, keyword3">';
        echo '<meta name="author" content="Author Name">';
        echo '<meta name="copyright" content="Your Website Name">';
    } elseif (is_home() || is_front_page()) {
        echo '<meta name="keywords" content="homepage keyword1, homepage keyword2">';
        echo '<meta name="author" content="Site Admin">';
        echo '<meta name="copyright" content="Your Website Name">';
    }
}
add_action('wp_head', 'add_meta_keywords');



/* ------------------------------------------------------------------------- *
 * End Keywords and Meta Descriptions in WordPress.
/* ------------------------------------------------------------------------- */

Save and Test
Save your changes and visit your site to check the page source. You should see the meta keywords, author, and copyright tags in the <head> section.

Tips:

  • Replace placeholder content with your actual keywords and details.
  • Use relevant keywords to avoid SEO penalties.

By following this guide, you can easily enhance your site’s metadata and SEO.

Categories BSB, Html, PHP, WordPress
How to Add a Facebook Like Button on Mobile view with Responsive CSS Design
How to avoid overloading functions.php
Share on Facebook Share on WhatsApp Share on X (Twitter) Share via Email

Related Posts

  • Redirecting non-logged-in users to the login page
  • How to regenerate or automate CSS from WordPress
  • Best explanation for shortcodes in wordpress
  • What Does This Mean on Binance SL (Stop Loss) and TP (Take Profit) Options for Spot Trading
Photo of author

Flora

How to Add Meta Keywords for Single and Homepage in WordPress

Published 21/01/2025

Contact

  • X
  • TikTok
  • Facebook
  • WhatsApp
I am Flora, the publisher and founder of *Be-Smart*, a platform dedicated to sharing insights and inspiration for living a fulfilling life. With a strong background in the web, my goal is to empower people to genuinely recognize and celebrate admirable actions big or small in themselves and others.

Bitcoin Price (BTC)

$104,803.12

Download BTC Ticker

Trending Posts

  • Here are ten of the most iconic and celebrated BMW models of all time
  • BMW M4 Competition (F82): Redefining Performance and Style
  • How to Clear Cache BlueHost with Cron Job Command
  • Legendary ‘Killing Me Softly’ singer, dead at 88
  • Euro 2024 Qualification Groups: All You Need to Know

Recent Posts

  • Fresh and Healthy Heart of Palm Salad Recipe
  • Ultimate WordPress Countdown Timer: PHP, CSS & JavaScript Guide
  • How to create a related posts section
  • How to uninstall Windows programs using a batch script
  • Here are 5 cool WhatsApp tricks you might not know about:

Archives

  • March 2025 (1)
  • February 2025 (65)
  • January 2025 (94)
  • December 2024 (42)
  • November 2024 (69)
  • October 2024 (92)
  • September 2024 (31)

Recent Comments

No comments to show.

Partners Group

Amazon AliExpress BlueHost
GeneratePress SnepBelgium Takeaway

BlogRoll

Mirror

The MixedZone

Finance Digest

  • Facebook
  • X
  • WhatsApp
  • RSS Feed
  • Facebook
  • X
  • WhatsApp
  • RSS Feed

BSB (228) Celebrity (24) Europe (37) Food (14) Html (41) Lifestyle (23) Love (18) Medical (15) Movies (18) My Health (28) PC World (36) PHP (22) Science (15) Social Media (13) Software (14) Stories (96) Weekly Horoscopes (13) Windows (29) Woman (20) WordPress (76)

  • Privacy Policy
  • Terms and Conditions
  • Disclaimer
  • Cookie Policy

© 2024 Be-smart

All Rights Reserved

Built with GeneratePress

This website uses cookies to ensure you get the best experience. By continuing to browse, you agree to our Privacy Policy.