HEX
Server: Apache
System: Linux webm004.cluster121.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User: grainesdfo (155059)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/grainesdfo/www/wp-content/themes/jupiterx/lib/templates/fragments/embed.php
<?php
/**
 * Extends WordPress Embed.
 *
 * @package JupiterX\Framework\Templates\Fragments
 *
 * @since   1.0.0
 */

// Filter.
jupiterx_add_smart_action( 'embed_oembed_html', 'jupiterx_embed_oembed' );
/**
 * Add markup to embed.
 *
 * @since 1.0.0
 *
 * @param string $html The embed HTML.
 *
 * @return string The modified embed HTML.
 */
function jupiterx_embed_oembed( $html ) {
	$output = jupiterx_open_markup( 'jupiterx_embed_oembed', 'div', 'class=jupiterx-oembed' );

		$output .= $html;

	$output .= jupiterx_close_markup( 'jupiterx_embed_oembed', 'div' );

	return $output;
}