Title: Blocktree
Author: liorkesos
Published: <strong>January 11, 2022</strong>
Last modified: May 26, 2022

---

Search plugins

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://s.w.org/plugins/geopattern-icon/blocktree.svg)

# Blocktree

 By [liorkesos](https://profiles.wordpress.org/liorkesos/)

[Download](https://downloads.wordpress.org/plugin/blocktree.zip)

 * [Details](https://wordpress.org/plugins/blocktree/#description)
 * [Reviews](https://wordpress.org/plugins/blocktree/#reviews)
 *  [Installation](https://wordpress.org/plugins/blocktree/#installation)
 * [Development](https://wordpress.org/plugins/blocktree/#developers)

 [Support](https://wordpress.org/support/plugin/blocktree/)

## Description

Manage Back office with Blocktree

This plugin requires:

### Example

Basic markup:

    ```
    echo \Blocktree\Plugin::$instance->get_markup($widget_name, $settings);
    ```

Set a shortcode used blocktree markup:

    ```
    do_shortcode('[blocktree component-name="my_widget_name" value="123" /]');
    ```

Add simple page & sub page used blocktree markup:

    ```
    add_action('admin_menu', function() {

      add_menu_page(
        $page_title,
        $menu_title,
        $capability,
        $menu_slug, 
        function() use ( $widget_name, $settings ) {
          echo \Blocktree\Plugin::$instance->get_markup($component_name, $settings = [], $handler_key);
        },
        $icon_url,
        $position
      );

      add_submenu_page(
        $parent_slug,
        $page_title,
        $menu_title,
        $capability,
        $menu_slug,
        function() use ( $widget_name, $settings ) {
          echo \Blocktree\Plugin::$instance->get_markup($component_name, $settings = [], $handler_key);
        },
        $position
      );

    });
    ```

Elementor widget-render example:

    ```
    class MyElementorWidget extends Widget_Base {

      protected function render() {

        $widget_name = $this->get_name();
        $settings = $this->get_data();

        if ($settings) {
            $settings = $settings['settings'];
        }

        echo \Blocktree\Plugin::$instance->get_markup($component_name, $settings = [], $handler_key);

      }

    }
    ```

## Installation

 1. Upload the blocktree plugin to the /wp-content/plugins/ directory.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress.
 3. Add widgets files at /wp-admin/options-general.php?page=blocktree

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“Blocktree” is open source software. The following people have contributed to this
plugin.

Contributors

 *   [ liorkesos ](https://profiles.wordpress.org/liorkesos/)
 *   [ linnovate ](https://profiles.wordpress.org/linnovate/)

[Translate “Blocktree” into your language.](https://translate.wordpress.org/projects/wp-plugins/blocktree)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/blocktree/), check 
out the [SVN repository](https://plugins.svn.wordpress.org/blocktree/), or subscribe
to the [development log](https://plugins.trac.wordpress.org/log/blocktree/) by [RSS](https://plugins.trac.wordpress.org/log/blocktree/?limit=100&mode=stop_on_copy&format=rss).

## Meta

 *  Version **1.0.0**
 *  Last updated **4 years ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 5.0 or higher **
 *  Tested up to **6.0.12**
 *  [Advanced View](https://wordpress.org/plugins/blocktree/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/blocktree/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/blocktree/reviews/)

## Contributors

 *   [ liorkesos ](https://profiles.wordpress.org/liorkesos/)
 *   [ linnovate ](https://profiles.wordpress.org/linnovate/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/blocktree/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](https://linnovate.net/)