'Maple Code Block (Basic)', 'description' => 'Display code from repositories', 'category' => 'widgets', 'icon' => 'editor-code', 'keywords' => array('maple', 'code', 'github'), 'attributes' => array( 'repository' => array( 'type' => 'string', 'default' => '' ) ), 'render_callback' => function($attributes) { $repo = isset($attributes['repository']) ? $attributes['repository'] : ''; if (empty($repo)) { return '
Enter a repository in block settings
'; } return do_shortcode('[maple_code_block repo="' . esc_attr($repo) . '"]'); } )); }, 100); // Very late priority to ensure everything is loaded