zZzzZ.
home2
/
zrzvbdry
/
bestpromosale.com
/
wp-content
/
plugins
/
wordpress-popular-posts
/
src
/
Block
New Folder
Editing: Block.php
Save
Cancel
<?php /** * Contract to build blocks. */ namespace WordPressPopularPosts\Block; abstract class Block { /** * */ public function hooks() { add_action('init', [$this, 'register']); } /** * */ abstract public function register(); /** * */ abstract public function render(array $attributes); }