Custom Head meta tag

PHOTO EMBED

Tue Oct 29 2024 23:10:40 GMT+0000 (Coordinated Universal Time)

Saved by @shahmeeriqbal

function theme_xyz_header_metadata() {
    
    // Post object if needed
    // global $post;
    
    // Page conditional if needed
    // if( is_page() ){}
    
  ?>
    
    <meta name="abc" content="xyz" />
    
  <?php
    
}
add_action( 'wp_head', 'theme_xyz_header_metadata' );
content_copyCOPY