wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



print_embed_sharing_button › WordPress Function

Da4.4.0
Deprecaton/a
print_embed_sharing_button ( Nessun parametro )
Definito a:
Codex:

Prints the necessary markup for the embed sharing button.



Sorgenti

function print_embed_sharing_button() {
	if ( is_404() ) {
		return;
	}
	?>
	<div class="wp-embed-share">
		<button type="button" class="wp-embed-share-dialog-open" aria-label="<?php esc_attr_e( 'Open sharing dialog' ); ?>">
			<span class="dashicons dashicons-share"></span>
		</button>
	</div>
	<?php
}