header.php
Here We add the header Code of our website we use WordPress Build in bloginfo to get data like
- website name
- description
- charset
- language ...
bloginfo('language');
bloginfo( 'charset' );
bloginfo('name');
bloginfo('description');
Example Code for the Header ..
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<html lang="<?php bloginfo('language'); ?>">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:title" content="<?php the_title(); ?>" />
<meta name="twitter:card" content="summary_large_image" />
<title><?php wp_title('|', true, 'right'); bloginfo('name'); ?></title>
<title><?php bloginfo('name'); ?> | <?php bloginfo('description'); ?></title>
<meta name="description" content="<?php bloginfo('description'); ?>">
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
<link rel="canonical" href="<?php echo esc_url( get_permalink() ); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>