Skip to content

Instantly share code, notes, and snippets.

@tlongren
Last active October 11, 2018 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save tlongren/9148513 to your computer and use it in GitHub Desktop.
Save tlongren/9148513 to your computer and use it in GitHub Desktop.
Auto Get Schema Type By Post Type
<?php
function html_tag_schema() {
$schema = 'http://schema.org/';
// Is single post
if(is_single()) {
$type = "Article";
}
// Is author page
elseif( is_author() ) {
$type = 'ProfilePage';
}
// Is search results page
elseif( is_search() ) {
$type = 'SearchResultsPage';
}
else {
$type = 'WebPage';
}
echo 'itemscope="itemscope" itemtype="' . $schema . $type . '"';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment