php 按帖子类型自动获取架构类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 按帖子类型自动获取架构类型相关的知识,希望对你有一定的参考价值。
<?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 . '"';
}
?>
以上是关于php 按帖子类型自动获取架构类型的主要内容,如果未能解决你的问题,请参考以下文章
php 按帖子类型搜索仅搜索帖子类型
php 按类别自定义帖子类型的相关帖子
php 按帖子类型和类别搜索
php 按标题,ASC排序自定义帖子类型
PHP 按帖子类型筛选WordPress搜索结果
php 按自定义帖子类型获取帖子列表