Tag: wordpress pages

  • Header, Footer in WordPress -4

    Header, Footer in WordPress -4

    get_header() and get_footer() includes the header and footer template for a customize theme. Header.php <!DOCTYPE html> <html>     <head>       <meta charset=”UTF-8″>       <meta name=”viewport” content=”width=device-width, initial-scale=1.0″>         <?php wp_head();?>     </head>     <body> [HTML and PHP Code of Header] Wp_head () prints scripts or data in the head tag of HTML Footer.php [HTML and PHP Code of  Footer ] <?php wp_footer();?> </body> Wp_footer () prints scripts or…