print_embed_styles

函数
print_embed_styles ( No parameters )

print_embed_styles: 这个动作用来打印从外部来源嵌入内容到WordPress所需的样式。

在嵌入的iframe头中打印CSS。

function print_embed_styles() {
	$type_attr = current_theme_supports( 'html5', 'style' ) ? '' : ' type="text/css"';
	$suffix    = SCRIPT_DEBUG ? '' : '.min';
	?>
	<style<?php echo $type_attr; ?>>
		<?php echo file_get_contents( ABSPATH . WPINC . "/css/wp-embed-template$suffix.css" ); ?>
	</style>
	<?php
}

常见问题

FAQs
查看更多 >