skip to Main Content

I have a custom wordpress theme for movie website. I want to add metadata tag for keywords but when i add this in WP theme Header its work for all my posts mean show these keywords for all posts that’s why google not indexing all my posts. Is there any solution to fix this because I only want this for my homepage and without any plugin.

<meta name="keywords" content="hollywood movies download, action movies, HD Movies">

3

Answers


  1. <?php if (is_home()) : ?>
        <meta name="keywords" content="hollywood movies download, action movies, HD Movies">
    <?php endif; ?>
    
    Login or Signup to reply.
  2. 1.Open your theme’s header.php file.

    2.Find the section of the file.

    3.Add the following code within the section, before the closing tag:

    <?php if (is_front_page()) : ?>
    <meta name="keywords" content="hollywood movies download, action movies, HD 
    Movies">
    <?php endif; ?>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search