wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



print_embed_sharing_button › WordPress Function

Seit4.4.0
Veraltetn/v
print_embed_sharing_button ( Keine Parameter )
Definiert in:
Codex:

Prints the necessary markup for the embed sharing button.



Quellcode

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
}