# codepen-embed-block/trunk/plugin.php

CodePen Embed Block, version trunk. 21 lines.

- Page: https://pluginprobe.com/plugins/codepen-embed-block/trunk/code/plugin.php
- Raw: https://pluginprobe.com/plugins/codepen-embed-block/trunk/raw/plugin.php
- Modified: 2026-08-21T23:50:58+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/codepen-embed-block/trunk/code/plugin.php#L10-L20`.

```php
<?php
/**
 * Plugin Name: CodePen Embed Block 
 * Description: Embeds Pens
 * Author: Chris Coyier
 * Version: 1.2.1
 * Tested up to: 6.7
 * License: GPL2+
 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Block Initializer.
 */
require_once plugin_dir_path( __FILE__ ) . 'src/init.php';

```
