Your IP : 3.17.190.212


Current Path : /home/church/public_html/wp-content/plugins/siteorigin-panels/compat/
Upload File :
Current File : /home/church/public_html/wp-content/plugins/siteorigin-panels/compat/rank-math.php

<?php
function siteorigin_rank_math_sitemap( $content, $post_id ) {
	$panels_data = get_post_meta( $post_id, 'panels_data', true );
	if ( ! empty( $panels_data ) ) {
		$GLOBALS[ 'SITEORIGIN_PANELS_PREVIEW_RENDER' ] = true;
		$content = SiteOrigin_Panels::renderer()->render( (int) $post_id, false, $panels_data );
		unset( $GLOBALS[ 'SITEORIGIN_PANELS_PREVIEW_RENDER' ] );
	}

	return $content;
}
add_filter( 'rank_math/sitemap/content_before_parse_html_images', 'siteorigin_rank_math_sitemap', 10, 2 );