php 首页上的创世纪h1网站标题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 首页上的创世纪h1网站标题相关的知识,希望对你有一定的参考价值。

// =========== Filter the site title with a custom function ============================
add_filter('genesis_seo_title', 'siga_site_title' );

// Add additional custom style to site header
function siga_site_title( $title ) {

    	// Change $custom_title text as you wish
	$custom_title = 'SG-Layout';
	// Don't change the rest of this on down

	// If we're on the front page or home page, use `h1` heading, otherwise us a `p` tag
	$tag = ( is_home() || is_front_page() ) ? 'h1' : 'p';

	// Compose link with title
	$inside = sprintf( '<a href="%s" title="%s">%s</a>', trailingslashit( home_url() ), esc_attr( get_bloginfo( 'name' ) ), $custom_title );

	// Wrap link and title in semantic markup
	$title = sprintf ( '<%s class="site-title" itemprop="headline">%s</%s>', $tag, $inside, $tag );
	return $title;
}

以上是关于php 首页上的创世纪h1网站标题的主要内容,如果未能解决你的问题,请参考以下文章

php 每当使用'h1'时,强制Genesis网站标题使用'p'。

php 博客模板上的创世纪页面内容。

百度统计代码安装问题 php 网站

HTML实现学习网站首页

PHP - 使用 H1 标签作为页面标题

Drupal 头版标记