css 创建多色站点标题

Posted

tags:

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

// Filter the title with a custom function
add_filter('genesis_seo_title', 'cg_site_title' );

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

    	// Change $custom_title text as you wish
	$custom_title = '<span class="custom-title">creative</span>Genesis';

	// 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;

}
.custom-title {
color: #000000;
font-weight: 600;
}

以上是关于css 创建多色站点标题的主要内容,如果未能解决你的问题,请参考以下文章

css3 设计多色边框

css 多色旋转器

CSS3多色线性渐变

使用背景颜色的多色圆形 div?

使用背景颜色的多色圆形div?

如何在 wpf 中制作多色分段进度条?