phpface

Untitled

Sep 6th, 2021 (edited)
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.72 KB | None | 0 0
  1. function videotube_add_video_schema(){
  2.     if( is_singular( 'video' ) ){
  3.         ?>
  4.         <meta itemprop="video" itemscope itemtype="http://schema.org/VideoObject">
  5.         <meta itemprop="name" content="<?php echo esc_attr( get_the_title() ); ?>">
  6.         <meta itemprop="description" content="<?php echo esc_attr( wp_kses(get_the_excerpt(), array()) ); ?>">
  7.         <meta itemprop="embedUrl" content="<?php echo get_post_embed_url( get_the_ID() );?>">
  8.         <meta itemprop="thumbnailUrl" content="<?php echo esc_url( get_the_post_thumbnail_url( get_the_ID(), 'large' ) ); ?>">
  9.         <meta itemprop="uploadDate" content="<?php echo esc_attr( get_the_date( 'Y-m-d H:i:s', get_the_ID() ) ); ?>">
  10.         <?php
  11.     }
  12. }
  13. add_action( 'wp_head', 'videotube_add_video_schema', 1 );
Add Comment
Please, Sign In to add comment