Files
2026-04-28 15:13:50 +02:00

25 lines
370 B
PHP

<?php
namespace AIOSEO\Plugin\Common\Standalone\Blocks;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* KeyPoints Block.
*
* @since 4.8.4
*/
class KeyPoints extends Blocks {
/**
* Register the block.
*
* @since 4.8.4
*
* @return void
*/
public function register() {
aioseo()->blocks->registerBlock( 'key-points' );
}
}