javascript code for make slugs

replace all non-alphanumerical characters with dashes

<script>
  $("#inputSlug").keyup(function() {
  var Text = $(this).val();
  Text = Text.toLowerCase();
  Text = Text.replace(/[^a-zA-Z0-9]+/g,'-');
  $("#inputSlug").val(Text);        
});
</script>

meta tags in wordpress without plugin


<meta name="description" content="Soa Technology™ <?php echo get_the_title(); ?>" />
<meta name="keywords" content="<?php echo get_the_title(); ?>" />
<meta name="document-type" content="Public" />
<meta name="document-rating" content="Safe for Kids" />
<meta name="Expires" content="never" />
<meta name="HandheldFriendly" content="True" />
<meta name="YahooSeeker" content="Index,Follow" />
<meta name="geo.region" content="IN" />
<meta name="State" content="DELHI" />
<meta name="City" content="NEW DELHI" />
<meta name="geo.position" content="28.877191,77.0792357" />
<meta name="ICBM" content="28.877191,77.0792357" />
<meta name="address" content="Soa Technology, (India) Pin Code - 110040,DELHI,IN " />
<meta name="copyright" content="Copyright 2010-22 Soa Technology. - Awarded Best Digital Marketing & SEO Company in India" />
<meta name="distribution" content="global" />
<meta name="language" content="english" />
<meta name="rating" content="general" />
<meta name="subject" content="Rated #1 <?php echo get_the_title(); ?>" />
<meta name="robots" content="ALL" />
<meta name="revisit-after" content="2 days" />
<meta name="generator" content="www.SoaTechnology.net" />
<meta name="author" content="Soa Technology " />
<meta name="og:type" content="article" />
<meta name="og:title" content="<?php echo get_the_title(); ?>" />
<meta name="og:image" content="https://www.soatechnology.net/wp-content/uploads/2019/12/soa-technology.png" />
<meta name="og:site_name" content="Soa Technology " />
<meta name="og:description" content="<?php echo get_the_title(); ?>" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:desc" content="Soa Technology™ <?php echo get_the_title(); ?>" />
<meta name="twitter:title" content="<?php echo get_the_title(); ?>" />
<meta name="abstract" content="<?php echo get_the_title(); ?>" />
<meta name="Classification" content="<?php echo get_the_title(); ?>" />
<meta name="dc.source" content="SoaTechnology.net" />
<meta name="dc.title" content="<?php echo get_the_title(); ?>" />
<meta name="dc.keywords" content="<?php echo get_the_title(); ?>" />
<meta name="dc.subject" content="Soa Technology " />
<meta name="dc.description" content="Soa Technology™ <?php echo get_the_title(); ?>" />
<script id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/9a2ae884ac2d5952f43e72931/c07c9755ee6e28519b2d9561d.js");</script>

	<script async src="https://fundingchoicesmessages.google.com/i/pub-7462577112023113?ers=1" nonce="zOidpl_sW7frzJ1hPBNAaw"></script><script nonce="zOidpl_sW7frzJ1hPBNAaw">(function() {function signalGooglefcPresent() {if (!window.frames['googlefcPresent']) {if (document.body) {const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe);} else {setTimeout(signalGooglefcPresent, 0);}}}signalGooglefcPresent();})();</script>
<?php
        $title = get_the_title(get_the_ID());
    $site_name = get_bloginfo('name');
    $url = get_the_permalink(get_the_ID());
    $description = get_bloginfo('description');
    $type = (is_home())? 'website':'article';
    $image = get_the_post_thumbnail_url(get_the_ID());
       ?>
        <meta property="og:title" content="<?php echo esc_attr($title); ?>">
<meta property="og:site_name" content="<?php echo esc_attr($site_name); ?>">
<meta property="og:url" content="<?php echo esc_url($url); ?>">
<meta property="og:description" content="<?php echo esc_attr($description); ?>">
<meta property="og:type" content="<?php echo esc_attr($type); ?>">
<meta property="og:image" content="<?php echo esc_url($image) ?>">  

World Time Zones

World Time Zones

Sat, Sep 12, 2026

LocationSunday, April 2
UTC1:00 p.m.
Los Angeles, USA6:00 a.m.
New York, USA9:00 a.m.
Rio de Janeiro, Brazil10:00 a.m.
London, UK2:00 p.m.
Madrid, Spain3:00 p.m.
Cape Town, South Africa3:00 p.m.
Port Louis, Mauritius5:00 p.m.
Lucknow, India6:30 p.m.
Kathmandu, Nepal6:45 p.m.
Kuala Lumpur, Malaysia9:00 p.m.
Taipei, Taiwan9:00 p.m.
Brisbane, Australia11:00 p.m.
Suva, Fiji1:00 a.m.

activate call forwarding Vodafone

  1. To activate call forwarding when you phone is unanswered: **61*9555699081*
  2. To activate call forwarding when your phone is not reachable: **62*9555699081*
  3. To activate call forwarding when busy: **67*9555699081*
  4. To activate all types of calls: **21*9555699081*

deactivate call forwarding vodafone

  1. To deactivate call forwarding when you phone is unanswered: ##61#
  2. To deactivate call forwarding when your phone is not reachable: ##62#
  3. To deactivate call forwarding when busy: ##67#
  4. To deactivate all types of calls: ##21#

textbox disabled, without border in bootstrap 5

Readonly plain text

If you want to have <input readonly> elements in your form styled as plain text, use the .form-control-plaintext class to remove the default form field styling and preserve the correct margin and padding.

  <div class="mb-3 row">
    <label for="staticEmail" class="col-sm-2 col-form-label">Email</label>
    <div class="col-sm-10">
      <input type="text" readonly class="form-control-plaintext" id="staticEmail" value="email@example.com">
    </div>
  </div>

where slug store in wordpress

The slug for Posts and Pages are stored in the wp_posts posts table in the column post_name. Just be aware that all the automatic saves as well as attachments are stored in the same table, so there will not be a solid column full of slugs, but only one for each “parent” (parent to the revisions) Post or Page.

AH00687: Negotiation: discovered file(s) matching request: /home/ubuntu/public_html/ (None could be negotiated).

The MultiViews option is probably causing this issue. This should be removed. MultiViews (part of mod_negotiation) will attempt to internally rewrite a request for /file (where some /file<.ext> exists on the filesystem) by testing the various files found in that directory and will serve the file that matches the appropriate mime-type. This happens before mod_rewrite has a go and can result in a conflict (since you are trying to do a similar thing with mod_rewrite).

Options Indexes FollowSymLinks MultiViews

.htaccess flag list

  • C (chained with next rule)
  • CO=cookie (set specified cookie)
  • E=var:value (set environment variable var to value)
  • F (forbidden – sends a 403 header to the user)
  • G (gone – no longer exists)
  • H=handler (set handler)
  • L (last – stop processing rules)

Last rule: instructs the server to stop rewriting after the preceding directive is processed.

  • N (next – continue processing rules)
  • NC (case insensitive)
  • NE (do not escape special URL characters in output)
  • NS (ignore this rule if the request is a subrequest)
  • P (proxy – i.e., apache should grab the remote content specified in the substitution section and return it)
  • PT (pass through – use when processing URLs with additional handlers, e.g., mod_alias)
  • R (temporary redirect to new URL)
  • R=301 (permanent redirect to new URL)
  • QSA (append query string from request to substituted URL)
  • S=x (skip next x rules)
  • T=mime-type (force specified mime type)

Flags are added to the end of a rewrite rule to tell Apache how to interpret and handle the rule. They can be used to tell apache to treat the rule as case-insensitive, to stop processing rules if the current one matches, or a variety of other options. They are comma-separated, and contained in square brackets.