wpseek.com
A WordPress-centric search engine for devs and theme authors
print_embed_styles is deprecated since version 6.4.0!
Alternative: wp_enqueue_embed_styles
Alternative: wp_enqueue_embed_styles
print_embed_styles › WordPress Function
Since4.4.0
Deprecated6.4.0
› print_embed_styles ( No parameters )
Defined at: |
|
Codex: |
Prints the CSS in the embed iframe header.
Related Functions: print_emoji_styles, print_embed_scripts, print_late_styles, print_admin_styles, wp_enqueue_embed_styles
Source
function print_embed_styles() { _deprecated_function( __FUNCTION__, '6.4.0', 'wp_enqueue_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 }