| Server IP : 104.26.5.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/buzzbitesv3/public_html/wp-content/themes/bite/skins/default/templates/ |
Upload File : |
<?php
/**
* The template to display the Structured Data Snippets
*
* @package BITE
* @since BITE 1.0.30
*/
// Structured data snippets
if ( bite_is_on( bite_get_theme_option( 'seo_snippets' ) ) ) {
?>
<div class="structured_data_snippets">
<meta itemprop="headline" content="<?php the_title_attribute( '' ); ?>">
<meta itemprop="datePublished" content="<?php echo esc_attr( get_the_date( 'Y-m-d' ) ); ?>">
<meta itemprop="dateModified" content="<?php echo esc_attr( get_the_modified_date( 'Y-m-d' ) ); ?>">
<div itemscope="itemscope" itemprop="publisher" itemtype="<?php echo esc_attr( bite_get_protocol( true ) ); ?>//schema.org/Organization">
<meta itemprop="name" content="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>">
<meta itemprop="telephone" content="">
<meta itemprop="address" content="">
<?php
$bite_logo_image = bite_get_logo_image();
if ( ! empty( $bite_logo_image['logo'] ) ) {
?>
<meta itemprop="logo" itemtype="<?php echo esc_attr( bite_get_protocol( true ) ); ?>//schema.org/ImageObject" content="<?php echo esc_url( $bite_logo_image['logo'] ); ?>">
<?php
}
?>
</div>
<?php
if ( bite_get_theme_option( 'show_author_info' ) != 1 || ! bite_is_single() || is_attachment() || ! get_the_author_meta( 'description' ) ) {
?>
<div itemscope="itemscope" itemprop="author" itemtype="<?php echo esc_attr( bite_get_protocol( true ) ); ?>//schema.org/Person">
<meta itemprop="name" content="<?php echo esc_attr( get_the_author() ); ?>">
</div>
<?php
}
if ( ( bite_is_singular() || is_attachment() ) && has_post_thumbnail() ) {
?>
<meta itemprop="image" itemtype="<?php echo esc_attr( bite_get_protocol( true ) ); ?>//schema.org/ImageObject" content="<?php echo esc_url( wp_get_attachment_url( get_post_thumbnail_id() ) ); ?>">
<?php
}
?>
</div>
<?php
}