php 在页面标题下添加特色图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在页面标题下添加特色图像相关的知识,希望对你有一定的参考价值。

add_action( 'genesis_entry_header', 'add_region_header_image' );
function add_region_header_image() {

	$image = genesis_get_image( array(
		'format'  => 'html',
		'size'    => 'large',
		'context' => '',
		'attr'    => array ( 'class' => 'aligncenter' ),
	) );

	if ( $image ) {
		printf( '<div class="region-featured-image">%s</div>', $image );
	}

}

以上是关于php 在页面标题下添加特色图像的主要内容,如果未能解决你的问题,请参考以下文章