Posts

Showing posts from July, 2021

CSS Responsive Drop Down Menu With Animation

          <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Menu</title> <link rel="stylesheet" href="menu.css"> </head> <body> <nav> <input type="checkbox" id="openMenu"> <label for="openMenu" id="openMenuLabel"> <span class="toggleIcon tIconTop"></span> <span class="toggleIcon tIconMiddle"></span> <span class="toggleIcon tIconBottom"></span> </label> <input type="checkbox" id="closeMenu"> <label for="closeMenu" id="closeMenuLabel"> <span class="toggleIcon closeIcon1"></span...

wp default post loop or query

     if(have_posts()){              while(have_posts()) :                   the_post();                  the_content();              endwhile;          wp_reset_postdata();          }else{              echo "no post found";          } /*   the_post() function must declare before getting title or content for the whole post otherwise it won't work   */