Monday 20 April 2020

Corona Virus (COVID -19) World Live Record & India Details Track Record



COVID - 19 (Coronavirus Disease)

Currently, No Vaccines are available for coronavirus. This virus is an infectious disease. You only can protect your self and others to spreading this virus by below steps
  • Wash hands regularly for 20 seconds, with hand-wash and rub hands in a good manner.
  • Use disposable tissue to cover your nose and mouth.
  • Use Social Distance, Avoid Close Contact 1 meter or 3 meters with other people who are not well.
  • Stay Home
  • Self-isolate from other if you feel unwell
  • Do not touch eyes, nose or mouth if hands not clean.

Symptoms of COVID-19

People stick with this new virus for 1 to 14 days before showing symptoms. Most people recover (80%) recover from this disease without needs special treatment. This disease can be serious for older people and people with other medical conditions (like asthma, diabetes, or heart patients).
  • Difficult to breath
  • Cough
  • Fever
  • Tiredness
  • Sore Throat

Infected From Corona Virus

  • Stay Home, Avoid Crowded Places, Stay with family Member
  • Cover Your Nose and Mouth with Tissue, Mask or Elbow
  • Wash hands regularly
  • Keep Clean Objects and Surface

Wednesday 17 October 2018

add widget in wordpress

function.php 

function add_footer_more_init(){
    
    register_sidebar(array(
        'name'=> 'New footer My',
        'id'=> 'new_footer_area',
        'before_widget'=> '<aside>',
        'after_widget'=> '</aside>',
        'before_title'=> '<h3 class="widget-title">',
        'after_title'=> '</h3>',
    ));
    
}

add_action('widgets_init', 'add_footer_more_init'); 



sidebar-footer.php


    <div id="my_here_code">
        <div class="container">
            <div class="row">
                <?php if(dynamic_sidebar('new_footer_area')): else : endif; ?>
            </div>
        </div>
    </div>