How to Add Meta Keywords in WordPress Without a Plugin (and Whether You Should)

If you searched for how to add meta keywords in WordPress without a plugin, you probably expect a quick code snippet — and you’ll get one. But before you paste anything into your theme, there’s a caveat worth understanding: the meta keywords tag is obsolete for search engine optimization. Google has openly ignored it for well over a decade, and stuffing it with terms can actually hand your keyword strategy to competitors who view your page source.

This guide does two things. First, it explains *why* the meta keywords tag is a dead end for ranking, so you can make an informed decision. Second, it shows you exactly how to add one without any plugin — for the rare legacy or system-specific cases where you genuinely need it — and, more importantly, how to add the meta description tag, which still matters.

Key Takeaways
• The meta keywords tag is ignored by Google and most modern search engines; adding it will not improve your rankings.
• Exposing a long keyword list in your page source can reveal your strategy to competitors with zero upside.
• You can add it without a plugin via a `wp_head` hook in your child theme’s `functions.php`, but only do so if a specific internal search, intranet, or non-Google engine requires it.
• Spend your effort on the tags that *do* matter today: the title tag, meta description, and Open Graph tags.

Does the meta keywords tag still do anything for SEO?

In short: no. The `` tag was a 1990s mechanism that let webmasters declare what their page was “about.” It was abused so heavily — pages stuffed with hundreds of irrelevant terms — that search engines stopped trusting it. Google confirmed years ago that it does not use the meta keywords tag in web ranking, and the major engines that drive global traffic follow suit.

There are two practical reasons to avoid it:

  1. No ranking benefit. Filling in keywords does nothing for your position in search results. Your effort is better spent elsewhere.
  2. Competitive exposure. Because the tag sits in your public HTML, anyone can open “View Source” and read your exact target keywords. You are essentially publishing your strategy for free.

The honest, often-unspoken truth: the meta keywords tag is SEO-dead. Google ignores it entirely, so every minute you spend curating a keyword list is a minute not spent on your title tag, meta description, and the actual content on the page — the three things that genuinely move rankings. Add the keywords tag without a plugin *only* if a specific downstream system (an internal search index, a niche directory, or a client requirement) explicitly demands it. Otherwise, skip it.

When might you still legitimately need it?

A few narrow scenarios justify adding the tag:

  • Internal site search tools or on-site search plugins that read the keywords meta to improve their own results.
  • A specific non-Google search engine or regional engine that still parses the field.
  • Compliance or client mandates — sometimes a brand guideline or third-party integration requires the field to be populated, even if it does nothing for Google.

If none of those apply to you, you can stop reading here and jump to the section on meta tags that matter.

Which meta tags actually matter today?

Before adding anything, it helps to see where the keywords tag sits relative to tags that earn real results. Here is a clear comparison.

Meta tag Does it affect Google ranking? Does it affect what users see? Worth your time?
Title tag (``)</td> <td>Yes — a strong relevance signal</td> <td>Yes — it’s the clickable headline in results</td> <td>Essential</td> </tr> <tr> <td><strong>Meta description</strong></td> <td>Not a direct ranking factor</td> <td>Yes — drives click-through from the snippet</td> <td>High</td> </tr> <tr> <td><strong>Open Graph</strong> (`og:title`, `og:image`)</td> <td>No direct ranking effect</td> <td>Yes — controls social share previews</td> <td>High</td> </tr> <tr> <td><strong>Meta keywords</strong></td> <td>No — ignored by Google</td> <td>No — invisible to users</td> <td>Skip (unless a system requires it)</td> </tr> <tr> <td><strong>Meta robots</strong> (`noindex`, `nofollow`)</td> <td>Yes — controls crawling/indexing</td> <td>No</td> <td>Situational but important</td> </tr> </tbody> </table> <p>The pattern is clear: focus your energy on the <strong>title</strong>, <strong>description</strong>, and <strong>Open Graph</strong> tags. They influence whether people find and click your page.</p> <h2><span class="ez-toc-section" id="How_do_you_add_a_meta_keywords_tag_in_WordPress_without_a_plugin"></span>How do you add a meta keywords tag in WordPress without a plugin?<span class="ez-toc-section-end"></span></h2> <p>The cleanest no-plugin method is to hook into `wp_head` from your <strong>child theme’s</strong> `functions.php`. Always use a child theme so your edits survive theme updates.</p> <h3><span class="ez-toc-section" id="Option_1_A_static_keywords_tag_for_the_whole_site"></span>Option 1: A static keywords tag for the whole site<span class="ez-toc-section-end"></span></h3> <p>This adds the same keywords to every page. Useful only for very small or single-topic sites.</p> <p>“`php // In your child theme’s functions.php function dh_add_static_meta_keywords() { echo ‘<meta name="keywords" content="web hosting, wordpress hosting, cpanel hosting">‘ . “\n”; } add_action( ‘wp_head’, ‘dh_add_static_meta_keywords’ ); “`</p> <h3><span class="ez-toc-section" id="Option_2_Pull_keywords_from_the_posts_tags"></span>Option 2: Pull keywords from the post’s tags<span class="ez-toc-section-end"></span></h3> <p>This is more dynamic — it builds the keywords list from each post’s assigned <strong>tags</strong>, so different pages get relevant terms automatically.</p> <p>“`php // In your child theme’s functions.php function dh_add_dynamic_meta_keywords() { if ( is_single() ) { $tags = get_the_tags(); if ( $tags ) { $keywords = array(); foreach ( $tags as $tag ) { $keywords[] = esc_attr( $tag->name ); } echo ‘<meta name="keywords" content="' . implode( ', ', $keywords ) . '">‘ . “\n”; } } } add_action( ‘wp_head’, ‘dh_add_dynamic_meta_keywords’ ); “`</p> <h3><span class="ez-toc-section" id="Option_3_Pull_keywords_from_a_custom_field"></span>Option 3: Pull keywords from a custom field<span class="ez-toc-section-end"></span></h3> <p>If you want manual control per post, store keywords in a <strong>custom field</strong> (for example, named `meta_keywords`) and echo it.</p> <p>“`php // In your child theme’s functions.php function dh_add_custom_field_keywords() { if ( is_singular() ) { $keywords = get_post_meta( get_the_ID(), ‘meta_keywords’, true ); if ( ! empty( $keywords ) ) { echo ‘<meta name="keywords" content="' . esc_attr( $keywords ) . '">‘ . “\n”; } } } add_action( ‘wp_head’, ‘dh_add_custom_field_keywords’ ); “`</p> <p>Note the use of <strong>`esc_attr()`</strong> in each example — always escape output to prevent broken markup or security issues.</p> <h2><span class="ez-toc-section" id="How_do_you_add_a_meta_description_without_a_plugin_the_tag_that_actually_helps"></span>How do you add a meta description without a plugin (the tag that actually helps)?<span class="ez-toc-section-end"></span></h2> <p>This is the part worth your attention. The <strong>meta description</strong> doesn’t directly raise rankings, but it controls the snippet text in search results and strongly influences <strong>click-through rate</strong>. Here’s how to add it dynamically using a custom field, falling back to an auto-generated excerpt.</p> <p>“`php // In your child theme’s functions.php function dh_add_meta_description() { if ( is_singular() ) { $description = get_post_meta( get_the_ID(), ‘meta_description’, true );</p> <p>// Fall back to the post excerpt if no custom description is set. if ( empty( $description ) ) { $description = wp_strip_all_tags( get_the_excerpt() ); }</p> <p>if ( ! empty( $description ) ) { $description = esc_attr( wp_trim_words( $description, 30, ” ) ); echo ‘<meta name="description" content="' . $description . '">‘ . “\n”; } } } add_action( ‘wp_head’, ‘dh_add_meta_description’ ); “`</p> <p>You can use the same `wp_head` approach to add <strong>Open Graph</strong> tags for clean social sharing previews:</p> <p>“`php function dh_add_open_graph_tags() { if ( is_singular() ) { echo ‘<meta property="og:title" content="' . esc_attr( get_the_title() ) . '">‘ . “\n”; echo ‘<meta property="og:type" content="article">‘ . “\n”; echo ‘<meta property="og:url" content="' . esc_url( get_permalink() ) . '">‘ . “\n”; } } add_action( ‘wp_head’, ‘dh_add_open_graph_tags’ ); “`</p> <h3><span class="ez-toc-section" id="Editing_the_theme_headerphp_directly"></span>Editing the theme header.php directly<span class="ez-toc-section-end"></span></h3> <p>If you prefer not to use a hook, you can place static meta tags directly inside the `<head>` section of your child theme’s `header.php`, before the closing `</head>` tag. The `wp_head` approach is generally cleaner because it keeps your additions organized and avoids editing core template structure, but both are valid.</p> <p>“`php</p> <p><meta name="description" content="Your concise, compelling page description here."> “`</p> <p>A practical reminder: editing `functions.php` is unforgiving — a single missing semicolon or stray character can produce the dreaded “white screen of death.” Always edit on a <strong>staging site</strong> first, or keep a backup of the file so you can revert quickly.</p> <h2><span class="ez-toc-section" id="Why_your_hosting_environment_makes_theme_edits_safer"></span>Why your hosting environment makes theme edits safer<span class="ez-toc-section-end"></span></h2> <p>Editing `functions.php` and managing child themes is far less stressful when your hosting gives you fast, direct file access and a safety net to test changes.</p> <p><strong>DarazHost</strong> provides <strong>WordPress-friendly hosting</strong> built for exactly this kind of work. You get <strong>easy file access</strong> through cPanel’s File Manager and SFTP, so editing `functions.php` or uploading a child theme takes seconds — no clunky workarounds. Our <strong>staging environments</strong> let you test code changes safely before they ever touch your live site, which is invaluable when a typo can take a page down. And because <strong>fast hosting genuinely supports SEO</strong> — page speed is a real ranking and user-experience signal — you’re improving the metrics that actually matter while you skip the ones that don’t. If something goes sideways, our <strong>24/7 support</strong> team is available to help you recover.</p> <h2><span class="ez-toc-section" id="What_should_you_focus_on_instead_of_meta_keywords"></span>What should you focus on instead of meta keywords?<span class="ez-toc-section-end"></span></h2> <p>If your goal is better search visibility, redirect the effort you’d spend on keywords into these high-impact areas:</p> <ul> <li><strong>Write a strong title tag.</strong> Make it descriptive, front-load your primary topic, and keep it within roughly 60 characters so it doesn’t truncate.</li> <li><strong>Craft a compelling meta description.</strong> Treat it as ad copy — clear, specific, and click-worthy in around 150–160 characters.</li> <li><strong>Improve on-page content.</strong> Genuine depth, clarity, and helpfulness are what modern search engines reward.</li> <li><strong>Set up Open Graph tags.</strong> Clean previews on social platforms drive clicks and shares.</li> <li><strong>Speed up your site.</strong> Faster load times improve both rankings and user experience.</li> </ul> <h2><span class="ez-toc-section" id="Frequently_asked_questions"></span>Frequently asked questions<span class="ez-toc-section-end"></span></h2> <p><strong>Does adding meta keywords hurt my SEO?</strong> It won’t directly penalize you, but it offers no ranking benefit and publicly exposes your keyword list to competitors. The opportunity cost — time spent on a useless tag — is the real downside.</p> <p><strong>Will Google ever use the meta keywords tag again?</strong> There’s no indication it will. Google explicitly dropped it as a ranking signal long ago due to widespread abuse, and modern ranking relies on content quality, links, and user signals instead.</p> <p><strong>Do I need a plugin to add a meta description in WordPress?</strong> No. As shown above, a short `wp_head` function in your child theme’s `functions.php` can output a dynamic meta description pulled from a custom field or post excerpt — no plugin required.</p> <p><strong>Why use a child theme instead of editing the parent theme directly?</strong> Editing the parent theme means your changes are wiped out the next time the theme updates. A <strong>child theme</strong> keeps your customizations safe and separate from the parent’s core files.</p> <p><strong>What’s the safest way to test functions.php changes?</strong> Use a <strong>staging site</strong> that mirrors your live environment. You can break things freely on staging, confirm everything works, then push the changes live with confidence.</p> <h2><span class="ez-toc-section" id="Conclusion"></span>Conclusion<span class="ez-toc-section-end"></span></h2> <p>The honest answer to “how to add meta keywords in WordPress without a plugin” is that you *can* — with a simple `wp_head` hook in your child theme’s `functions.php` — but for SEO you almost certainly *shouldn’t*. The tag is obsolete, ignored by Google, and quietly reveals your strategy to competitors. Reserve it for genuine legacy or system-specific needs. Then point your energy at the tags and signals that actually earn results: a sharp <strong>title tag</strong>, a persuasive <strong>meta description</strong>, clean <strong>Open Graph</strong> tags, strong content, and fast hosting.</p> </div><!-- .entry-content --> </article><!-- #post-8951 --> <div class="clearfix divider_line9 lessm artciles-between"></div> <div class="sharepost"> <h5 class="caps">Share this Article</h5> <ul> <li> <a href="https://www.facebook.com/sharer/sharer.php?u=https://www.darazhost.com/how-to-add-meta-keywords-in-wordpress-without-a-plugin-and-whether-you-should/">  <i class="fab fa-facebook-f fa-lg"></i>  </a> </li> <li> <a href="https://twitter.com/intent/tweet?text=How to Add Meta Keywords in WordPress Without a Plugin (and Whether You Should) https://www.darazhost.com/how-to-add-meta-keywords-in-wordpress-without-a-plugin-and-whether-you-should/"> <i class="fab fa-twitter fa-lg"></i> </a> </li> <li> <a href="https://plus.google.com/share?url=//www.darazhost.com/how-to-add-meta-keywords-in-wordpress-without-a-plugin-and-whether-you-should/"> <i class="fab fa-google-plus-g fa-lg"></i> </a> </li> <li> <a href="https://www.linkedin.com/shareArticle?mini=true&url=&title=&summary=&url=https://www.darazhost.com/how-to-add-meta-keywords-in-wordpress-without-a-plugin-and-whether-you-should/"> <i class="fab fa-linkedin-in fa-lg"></i> </a> </li> <li> <a href="https://pinterest.com/pin/create/button/?url=&media=&description=//www.darazhost.com/how-to-add-meta-keywords-in-wordpress-without-a-plugin-and-whether-you-should/"> <i class="fab fa-pinterest fa-lg"></i> </a> </li> </ul> </div> <nav id="nav-single"> <span class="nav-previous"><a href="https://www.darazhost.com/wordpress-website-maintenance-care-plans-the-complete-recurring-task-guide/" rel="prev"><span>←</span> Previous Article</a></span> <span class="nav-next"><a href="https://www.darazhost.com/which-os-is-optimized-for-web-apps-choosing-the-right-server-os/" rel="next">Next Article<span>→</span></a></span> </nav><!-- #nav-single --> <!--About author--> <div class="clearfix"></div> <h5 class="caps">About the Author</h5> <div class="about_author"> <img alt='' src='https://secure.gravatar.com/avatar/05d0d0caec8dd762e58a98494151044937c9574d31f9319b1e1211579ed3c310?s=96&r=g' srcset='https://secure.gravatar.com/avatar/05d0d0caec8dd762e58a98494151044937c9574d31f9319b1e1211579ed3c310?s=192&r=g 2x' class='avatar avatar-96 photo' height='96' width='96' decoding='async'/> <a href="https://www.darazhost.com/author/cristinashank/" target="_blank"> Cristina Shank </a> <br> Cristina Shank is a skilled Database Engineer with a degree from Stanford University. She specializes in optimizing and managing complex database systems, bringing a blend of technical expertise and innovative solutions to her work. Cristina is dedicated to advancing data management practices and frequently shares her insights through writing and speaking engagements. </div> <div class="clearfix margin_top5"></div> <section id="related_posts"> <div class="block-head"> <h5 class="widget-title caps">Related Articles</h5> <div class="stripe-line"></div> </div> <div class="post-listing"> <div class="related-item col-md-4"> <ul class="recent_posts_list"> <li> <a href="https://www.darazhost.com/changing-a-mysql-user-password-application-user-the-right-way/" title="Permalink to Changing a MySQL User Password (Application User) the Right Way" rel="bookmark"> <img src="https://www.darazhost.com/wp-content/themes/darazhost/assets/images/default-272x124.jpg" alt="Changing a MySQL User Password (Application User) the Right Way" /> <span class="overlay-icon"></span> </a> <br /> <a class="relate-link" href="https://www.darazhost.com/changing-a-mysql-user-password-application-user-the-right-way/" title="Permalink to Changing a MySQL User Password (Application User) the Right Way" rel="bookmark">Changing a MySQL User Password (Application User) the Right Way</a> <i>June 21, 2026</i> </li> </ul> </div> <div class="related-item col-md-4"> <ul class="recent_posts_list"> <li> <a href="https://www.darazhost.com/wordpress-web-care-plan-pricing-what-you-pay-for-and-whether-its-worth-it/" title="Permalink to WordPress Web Care Plan Pricing: What You Pay For and Whether It’s Worth It" rel="bookmark"> <img src="https://www.darazhost.com/wp-content/themes/darazhost/assets/images/default-272x124.jpg" alt="WordPress Web Care Plan Pricing: What You Pay For and Whether It’s Worth It" /> <span class="overlay-icon"></span> </a> <br /> <a class="relate-link" href="https://www.darazhost.com/wordpress-web-care-plan-pricing-what-you-pay-for-and-whether-its-worth-it/" title="Permalink to WordPress Web Care Plan Pricing: What You Pay For and Whether It’s Worth It" rel="bookmark">WordPress Web Care Plan Pricing: What You Pay For and Whether It’s Worth It</a> <i>June 21, 2026</i> </li> </ul> </div> <div class="related-item col-md-4"> <ul class="recent_posts_list"> <li> <a href="https://www.darazhost.com/wordpress-webmaster-what-the-role-involves-and-how-to-become-one/" title="Permalink to WordPress Webmaster: What the Role Involves and How to Become One" rel="bookmark"> <img src="https://www.darazhost.com/wp-content/themes/darazhost/assets/images/default-272x124.jpg" alt="WordPress Webmaster: What the Role Involves and How to Become One" /> <span class="overlay-icon"></span> </a> <br /> <a class="relate-link" href="https://www.darazhost.com/wordpress-webmaster-what-the-role-involves-and-how-to-become-one/" title="Permalink to WordPress Webmaster: What the Role Involves and How to Become One" rel="bookmark">WordPress Webmaster: What the Role Involves and How to Become One</a> <i>June 21, 2026</i> </li> </ul> </div> <div class="related-item col-md-4"> <ul class="recent_posts_list"> <li> <a href="https://www.darazhost.com/error-establishing-a-database-connection-causes-and-fixes/" title="Permalink to Error Establishing a Database Connection: Causes and Fixes" rel="bookmark"> <img src="https://www.darazhost.com/wp-content/themes/darazhost/assets/images/default-272x124.jpg" alt="Error Establishing a Database Connection: Causes and Fixes" /> <span class="overlay-icon"></span> </a> <br /> <a class="relate-link" href="https://www.darazhost.com/error-establishing-a-database-connection-causes-and-fixes/" title="Permalink to Error Establishing a Database Connection: Causes and Fixes" rel="bookmark">Error Establishing a Database Connection: Causes and Fixes</a> <i>June 21, 2026</i> </li> </ul> </div> <div class="related-item col-md-4"> <ul class="recent_posts_list"> <li> <a href="https://www.darazhost.com/affordable-wordpress-website-design-how-to-build-a-quality-site-on-a-budget/" title="Permalink to Affordable WordPress Website Design: How to Build a Quality Site on a Budget" rel="bookmark"> <img src="https://www.darazhost.com/wp-content/themes/darazhost/assets/images/default-272x124.jpg" alt="Affordable WordPress Website Design: How to Build a Quality Site on a Budget" /> <span class="overlay-icon"></span> </a> <br /> <a class="relate-link" href="https://www.darazhost.com/affordable-wordpress-website-design-how-to-build-a-quality-site-on-a-budget/" title="Permalink to Affordable WordPress Website Design: How to Build a Quality Site on a Budget" rel="bookmark">Affordable WordPress Website Design: How to Build a Quality Site on a Budget</a> <i>June 20, 2026</i> </li> </ul> </div> <div class="related-item col-md-4"> <ul class="recent_posts_list"> <li> <a href="https://www.darazhost.com/the-role-of-domain-names-in-building-trust-with-online-shoppers/" title="Permalink to The Role of Domain Names in Building Trust with Online Shoppers" rel="bookmark"> <img src="https://www.darazhost.com/wp-content/uploads/2024/09/7377-the-role-of-domain-names-in-building-trust-with-online-shoppers-272x124.jpg" alt="The Role of Domain Names in Building Trust with Online Shoppers" /> <span class="overlay-icon"></span> </a> <br /> <a class="relate-link" href="https://www.darazhost.com/the-role-of-domain-names-in-building-trust-with-online-shoppers/" title="Permalink to The Role of Domain Names in Building Trust with Online Shoppers" rel="bookmark">The Role of Domain Names in Building Trust with Online Shoppers</a> <i>September 17, 2024</i> </li> </ul> </div> <div class="related-item col-md-4"> <ul class="recent_posts_list"> <li> <a href="https://www.darazhost.com/how-to-use-woocommerce-for-subscription-based-models/" title="Permalink to How to Use WooCommerce for Subscription-Based Models" rel="bookmark"> <img src="https://www.darazhost.com/wp-content/uploads/2024/09/7355-how-to-use-woocommerce-for-subscription-based-models-272x124.jpg" alt="How to Use WooCommerce for Subscription-Based Models" /> <span class="overlay-icon"></span> </a> <br /> <a class="relate-link" href="https://www.darazhost.com/how-to-use-woocommerce-for-subscription-based-models/" title="Permalink to How to Use WooCommerce for Subscription-Based Models" rel="bookmark">How to Use WooCommerce for Subscription-Based Models</a> <i>September 17, 2024</i> </li> </ul> </div> <div class="related-item col-md-4"> <ul class="recent_posts_list"> <li> <a href="https://www.darazhost.com/the-power-of-non-traditional-domain-extensions-in-marketing/" title="Permalink to The Power of Non-Traditional Domain Extensions in Marketing" rel="bookmark"> <img src="https://www.darazhost.com/wp-content/uploads/2024/09/7345-the-power-of-non-traditional-domain-extensions-in-marketing-272x124.jpg" alt="The Power of Non-Traditional Domain Extensions in Marketing" /> <span class="overlay-icon"></span> </a> <br /> <a class="relate-link" href="https://www.darazhost.com/the-power-of-non-traditional-domain-extensions-in-marketing/" title="Permalink to The Power of Non-Traditional Domain Extensions in Marketing" rel="bookmark">The Power of Non-Traditional Domain Extensions in Marketing</a> <i>September 17, 2024</i> </li> </ul> </div> <div class="related-item col-md-4"> <ul class="recent_posts_list"> <li> <a href="https://www.darazhost.com/the-ultimate-guide-to-wordpress-database-management/" title="Permalink to The Ultimate Guide to WordPress Database Management" rel="bookmark"> <img src="https://www.darazhost.com/wp-content/uploads/2024/09/7337-the-ultimate-guide-to-wordpress-database-management-272x124.jpg" alt="The Ultimate Guide to WordPress Database Management" /> <span class="overlay-icon"></span> </a> <br /> <a class="relate-link" href="https://www.darazhost.com/the-ultimate-guide-to-wordpress-database-management/" title="Permalink to The Ultimate Guide to WordPress Database Management" rel="bookmark">The Ultimate Guide to WordPress Database Management</a> <i>September 16, 2024</i> </li> </ul> </div> </div> </section> <div class="clear margin_bottom3"></div> <div id="comments"> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/how-to-add-meta-keywords-in-wordpress-without-a-plugin-and-whether-you-should/#respond" style="display:none;">Cancel Reply</a></small></h3><p class="must-log-in">You must be <a>logged in</a> to post a comment.</p> </div><!-- #respond --> </div><!-- #comments --> </div> <div class="col-md-3"> </div> </div> </div> <!--Footer Default--> <footer class="footer"> <div class="footer"> <div class="ftop"> <div class="container"> <div class="left"> <h4 class="caps light"> <strong>Need Help?</strong> 646-567-7607 </h4> <h1>+1 646-567-7607</h1> </div><!-- end left --> <div class="right"> <p>Sign up to Newsletter to get special offers</p> <form method="post" id="king_newsletter"> <input class="newsle_eminput" name="king_email" id="king_email" value="" placeholder="Please enter your email..." type="text" /> <input name="submit" id="king_newsletter_submit" value="Sign Up" class="input_submit" type="submit" /> </form> <div id="king_newsletter_status"> </div> <script language="javascript" type="text/javascript"> jQuery(document).ready(function($) { $("#king_newsletter").submit(function(){ king_submit_newsletter(); return false; }); function king_submit_newsletter(){ var email = jQuery("#king_email").val(); if( email.length < 8 || email.indexOf('@') == -1 || email.indexOf('.') == -1 ){ $('#king_email'). animate({marginLeft:-10, marginRight:10},100). animate({marginLeft:0, marginRight:0},100). animate({marginLeft:-10, marginRight:10},100). animate({marginLeft:0, marginRight:0},100); return false; } $('#king_newsletter_status').html('<i style="color:#ccc" class="fa fa-spinner fa-pulse fa-2x"></i> Sending...'); $.ajax({ type:'POST', data:{ "action" : "king_newsletter", "king_newsletter" : "subcribe", "king_email" : email }, url: "https://www.darazhost.com/wp-admin/admin-ajax.php?t=1782075958", success: function( data ) { $(".king-newsletter-preload").fadeOut( 500 ); var obj = $.parseJSON( data ); if( obj.status === 'success' ){ var txt = '<div id="king_newsletter_status" style="color:green;">'+obj.messages+'</div>'; }else{ var txt = '<div id="king_newsletter_status" style="color:red;">'+obj.messages+'</div>'; } $('#king_newsletter_status').after( txt ).remove(); } }); } }); </script> </div><!-- end right --> </div> </div> <div class="clearfix"></div> <div class="secarea"> <div class="container"> <div class="one_fourth animated eff-fadeInUp delay-100ms"> <div id="footer_column-1" class="widget-area"> <aside id="block-3" class="widget widget_block"><!--Start of Tawk.to Script--> <script type="text/javascript"> var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date(); (function(){ var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0]; s1.async=true; s1.src='https://embed.tawk.to/5840a9168a20fc0cac4ac7a0/default'; s1.charset='UTF-8'; s1.setAttribute('crossorigin','*'); s0.parentNode.insertBefore(s1,s0); })(); </script> <!--End of Tawk.to Script--> <ul class="foolist"> <li><a href="https://www.darazhost.com/web-hosting/">SSD Shared Hosting</a></li> <li><a href="https://www.darazhost.com/ssd-linux-vps-hosting/">SSD VPS Hosting</a></li> <li><a href="https://www.darazhost.com/cheap-wordpress-ssd-hosting/">WordPress Hosting</a></li> <li><a href="https://www.darazhost.com/cheap-fast-windows-ssd-vps/">Fast Windows VPS</a></li> <li><a href="https://www.darazhost.com/domains/">Domains</a></li> <li><a href="https://www.darazhost.com/dedicated-server//">Dedicated Server</a></li> </ul></aside> </div> </div> <div class="one_fourth animated eff-fadeInUp delay-200ms"> </div> <div class="one_fourth animated eff-fadeInUp delay-300ms"> </div> <div class="one_fourth last aliright animated eff-fadeInUp delay-400ms"> </div> </div><!--end class container--> </div><!--end class secarea--> <div class="clearfix"></div> <div class="copyrights"> <div class="container"> <div class="one_half"> Copyright © 2026 <a href="https://www.darazhost.com/">DarazHost </a> - All rights reserved. </div> <div class="one_half last aliright"> <a href="https://www.darazhost.com/terms-of-service/"> Terms of Service </a> | | <a href="https://www.darazhost.com/sitemap_index.xml" target="_blank"> Site Map </a> </div> </div> </div> </div><!--end class footer--> </footer> </div><!-- #main --> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/darazhost/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <a href="#" class="scrollup" id="scrollup" style="display: none;">Scroll</a> <script type="text/javascript"> jQuery(document).ready(function($) { var king_sticky = true; $(window).scroll(function () { if ($(window).scrollTop() > 50 ) { $("#scrollup").show(); if(king_sticky) document.mainMenu.addClass("compact"); } else { $("#scrollup").hide(); if(king_sticky) document.mainMenu.removeClass("compact"); } }); }); </script> <style> div[style*="position: fixed"][style*="z-index: 2147483647"] { opacity: 0 !important; pointer-events: none !important; user-select: none !important; } </style> <script id="king-hosting-js" src="https://www.darazhost.com/wp-content/themes/darazhost/assets/js/king.hosting.js?ver=5.3"></script> <script id="wp-hooks-js" src="https://www.darazhost.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script> <script id="wp-i18n-js" src="https://www.darazhost.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script> <script id="wp-i18n-js-after"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); //# sourceURL=wp-i18n-js-after </script> <script id="swv-js" src="https://www.darazhost.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.6"></script> <script id="contact-form-7-js-before"> var wpcf7 = { "api": { "root": "https:\/\/www.darazhost.com\/wp-json\/", "namespace": "contact-form-7\/v1" }, "cached": 1 }; //# sourceURL=contact-form-7-js-before </script> <script id="contact-form-7-js" src="https://www.darazhost.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.6"></script> <script id="eztoc-scroll-scriptjs-js-extra"> var eztoc_smooth_local = {"scroll_offset":"30","add_request_uri":"","add_self_reference_link":""}; //# sourceURL=eztoc-scroll-scriptjs-js-extra </script> <script id="eztoc-scroll-scriptjs-js" src="https://www.darazhost.com/wp-content/plugins/easy-table-of-contents/assets/js/smooth_scroll.min.js?ver=2.0.85"></script> <script id="eztoc-js-cookie-js" src="https://www.darazhost.com/wp-content/plugins/easy-table-of-contents/vendor/js-cookie/js.cookie.min.js?ver=2.2.1"></script> <script id="eztoc-jquery-sticky-kit-js" src="https://www.darazhost.com/wp-content/plugins/easy-table-of-contents/vendor/sticky-kit/jquery.sticky-kit.min.js?ver=1.9.2"></script> <script id="eztoc-js-js-extra"> var ezTOC = {"smooth_scroll":"1","visibility_hide_by_default":"","scroll_offset":"30","fallbackIcon":"\u003Cspan class=\"\"\u003E\u003Cspan class=\"eztoc-hide\" style=\"display:none;\"\u003EToggle\u003C/span\u003E\u003Cspan class=\"ez-toc-icon-toggle-span\"\u003E\u003Csvg style=\"fill: #999;color:#999\" xmlns=\"http://www.w3.org/2000/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"\u003E\u003Cpath d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"\u003E\u003C/path\u003E\u003C/svg\u003E\u003Csvg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http://www.w3.org/2000/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"\u003E\u003Cpath d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"/\u003E\u003C/svg\u003E\u003C/span\u003E\u003C/span\u003E","chamomile_theme_is_on":""}; //# sourceURL=eztoc-js-js-extra </script> <script id="eztoc-js-js" src="https://www.darazhost.com/wp-content/plugins/easy-table-of-contents/assets/js/front.min.js?ver=2.0.85-1781093492"></script> <script id="king-owl-carousel-js" src="https://www.darazhost.com/wp-content/themes/darazhost/assets/js/owl.carousel.js?ver=5.3"></script> <script id="king-modal-js" src="https://www.darazhost.com/wp-content/themes/darazhost/assets/js/modal.js?ver=5.3"></script> <script id="king-custom-js" src="https://www.darazhost.com/wp-content/themes/darazhost/assets/js/custom.js?ver=5.3"></script> <script id="king-user-js" src="https://www.darazhost.com/wp-content/themes/darazhost/assets/js/king.user.js?ver=5.3"></script> <script id="king-viewportchecker-js" src="https://www.darazhost.com/wp-content/themes/darazhost/assets/js/viewportchecker.js?ver=5.3"></script> <script id="king-cubeportfolio-js" src="https://www.darazhost.com/wp-content/themes/darazhost/assets/js/cube/jquery.cubeportfolio.min.js?ver=5.3"></script> <script id="king-cubeportfolio-main-js" src="https://www.darazhost.com/wp-content/themes/darazhost/assets/js/cube/main.js?ver=5.3"></script> <script id="king-universal-custom-js" src="https://www.darazhost.com/wp-content/themes/darazhost/assets/js/universal/custom.js?ver=5.3"></script> <script async data-wp-strategy="async" fetchpriority="low" id="comment-reply-js" src="https://www.darazhost.com/wp-includes/js/comment-reply.min.js?ver=7.0"></script> <script id="google-recaptcha-js" src="https://www.google.com/recaptcha/api.js?render=6LfJxqUUAAAAAJPs_ylxNNwBNj9I1A5PGvyAuhe8&ver=3.0"></script> <script id="wp-polyfill-js" src="https://www.darazhost.com/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0"></script> <script id="wpcf7-recaptcha-js-before"> var wpcf7_recaptcha = { "sitekey": "6LfJxqUUAAAAAJPs_ylxNNwBNj9I1A5PGvyAuhe8", "actions": { "homepage": "homepage", "contactform": "contactform" } }; //# sourceURL=wpcf7-recaptcha-js-before </script> <script id="wpcf7-recaptcha-js" src="https://www.darazhost.com/wp-content/plugins/contact-form-7/modules/recaptcha/index.js?ver=6.1.6"></script> <script id="king-shortcode-js" src="https://www.darazhost.com/wp-content/themes/darazhost/core/shortcodes/assets/js/shortcode.js?ver=5.3"></script> <script id="wp-emoji-settings" type="application/json"> {"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://www.darazhost.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0"}} </script> <script type="module"> /*! This file is auto-generated */ const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))}); //# sourceURL=https://www.darazhost.com/wp-includes/js/wp-emoji-loader.min.js </script> <script></script> <style> div[style*="position: fixed"][style*="z-index: 2147483647"] { opacity: 0 !important; pointer-events: none !important; user-select: none !important; } </style> </body> </html> <!-- Page cached by LiteSpeed Cache 7.8.1 on 2026-06-21 21:05:58 -->