php http://leaves-and-love.net/how-to-improve-wordpress-seo-with-schema-org/

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php http://leaves-and-love.net/how-to-improve-wordpress-seo-with-schema-org/相关的知识,希望对你有一定的参考价值。

<?php
function yourtheme_html_schema()
{
	$base = 'http://schema.org/';
	if( is_page( 5 /* type in the ID of your contact page here, 5 is an example */ ) )
	{
		$type = 'ContactPage';
	}
	elseif( is_page( 4 /* type in the ID of your about page here, 5 is an example */ ) )
	{
		$type = 'AboutPage';
	}
	elseif( is_singular( array( 'book', 'movie' ) /* add custom post types that describe a single item to this array */ )  )
	{
		$type = 'ItemPage';
	}
	elseif( is_author() )
	{
		$type = 'ProfilePage';
	}
	elseif( is_search() )
	{
		$type = 'SearchResultsPage';
	}
	else
	{
		$type = 'WebPage';
	}
	echo 'itemscope="itemscope" itemtype="' . $base . $type . '"';
}
?>

以上是关于php http://leaves-and-love.net/how-to-improve-wordpress-seo-with-schema-org/的主要内容,如果未能解决你的问题,请参考以下文章

php send.php php邮件模板#php

IntelliJ IDEA 11编辑php是,支持php文件名为.php5和.php4,如何设置能让其也支持.php呢?

如何从php5升级到php7

请问php中如何调用php文件中的内容?

php [php:PHPMailer示例] php库“PHPMailer”示例。 #PHP

php基础