# wpsso/22.7.0/lib/theme-compat/embed.php

WPSSO Core – Complete Schema Markup and Meta Tags, version 22.7.0. 27 lines.

- Page: https://pluginprobe.com/plugins/wpsso/22.7.0/code/lib/theme-compat/embed.php
- Raw: https://pluginprobe.com/plugins/wpsso/22.7.0/raw/lib/theme-compat/embed.php
- Modified: 2026-03-25T12:08:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpsso/22.7.0/code/lib/theme-compat/embed.php#L10-L20`.

```php
<?php
/*
 * License: GPLv3
 * License URI: https://www.gnu.org/licenses/gpl.txt
 * Copyright 2012-2026 Jean-Sebastien Morisset (https://wpsso.com/)
 *
 * Original source from wordpress/wp-includes/theme-compat/embed.php.
 */

get_header( 'embed' );

if ( have_posts() ) {

	while ( have_posts() ) {

		the_post();

		get_template_part( 'wpsso/embed', 'content' );
	}

} else {

	get_template_part( 'embed', '404' );
}

get_footer( 'embed' );

```
