Nid yw’r ategyn hwn wedi cael ei ddiweddaru ers 3 ryddhad mawr. Efallai nad yw’n cael ei gynnal bellach ac efallai bod materion cydnawsedd wrth gael ei ddefnyddio gyda fersiynau mwy diweddar o WordPress.

Blocktree

Disgrifiad

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);

  }

}

Gosod

  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

Adolygiadau

There are no reviews for this plugin.

Contributors & Developers

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

Cyfranwyr

Translate “Blocktree” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.