Banner for Wp Dtree 30
Dynamic tree-widgets to replace the standard archives, categories, pages and link lists. Support custom Menus too. Wordpress Tutorial
Noted That:
  • To install correctly this wp-dtree-30.zip .
  • Fisrt Download the wp-dtree-30.zip to your computer
  • Extract/Open wp-dtree-30.zip to Your Computer.
  • Then, Find readme.txt file inside wp-dtree-30.zip and Open readme.txt .
  • Now, Read the Requirements of this plugin. Which Wordpress Version and PHP Version are required to run this Plugin in Your Wordpress Site.
  • Then, Follow the Tips Below.
Start the Tips:

Step-1 : Download " wp-dtree-30.zip " to Your Local Computer.

Step-2 : Then, Login to your " yourdomain.com/wp-admin " Dashboard.

Login to Wordpress Wp Dtree 30

Step-3 : Then, Click on " Plugins " + " Add New " from left Side Menu of Dashboard.

Go to Plugin Install Wp Dtree 30

Step-4 : Now, Click on " Upload Plugin " button.

Click Upload Button Wp Dtree 30

Step-5 : Now, Browse " wp-dtree-30.zip " Downloaded plugin from your computer, Where you downloaded " wp-dtree-30.zip " According to Step – 1 Above then, click on " Install Now "

Upload Plugin Wp Dtree 30

Step-6 : Now, Click on " Active Plugin "

Activate Wp Dtree 30

Step-7 : Then, See left Side Menu. " Wp Dtree 30 " folder is added on left Side Menu. Now, Click on " Wp Dtree 30 " folder.

Noted that: If you do not see " Wp Dtree 30 " folder on left Side Menu then, see at left Side Menu " Settings " or " Tools ".

Step-8 : Now you configure yourself oR Watch video tutorial below about Wp Dtree 30 Configurations and Settings or How to work " Wp Dtree 30 " in your WordPress site.

oR

After Activated Plugin According to Step-6 then,

  1. Go to " Plugins " + " Installed Plugin " from Wordpress Admin Panel Leftside Menu.
  2. or Direct go to: https://yourdomain/wp-admin/plugins.php
  3. Then, Find " WP-dTree " Activated Plugin from Plugin List.
  4. Then, Click on " Settings " from Plugin that is WP-dTree
  5. Now, Edit/Add/Config the setting and Click on " Save Changes " button,
WP Plugin Setting



Guide
  1. If upgrading: disable the old version first !
  2. Transfer the ‘wp-dtree-30’ folder to the /wp-content/plugins/ directory
  3. Activate the plugin through the ‘Plugins’ menu in WordPress
  4. Go to the ‘WP-dTree’ under ‘Settings’ to adjust your preferences
  5. Go to ‘Presentation’ -> ‘Widgets’ and drag-n-drop the widgets to the relevant section of your sidebar(s)
  6. Configure the active Widget to your liking
  7. Styling is done through CSS

For developers

WP-dTree exposes the following template tag functions :

  • wpdt_list_archives();
  • wpdt_list_categories();
  • wpdt_list_taxonomies(); //needs testing.
  • wpdt_list_menu(); //needs testing
  • wpdt_list_pages();
  • wpdt_list_links();
  • wpdt_list_bookmarks(); //alias for wpdt_list_links

They function a lot like WordPress own wp_list_* functions:

  • They take an (optional) query-string or associative array with arguments
  • They print by default, but if passed ‘echo=0’ they return the string of markup
  • Most of them use the WordPress namesake for generating noscript-content

Here’s an example:


 

I’ve tried to keep the same argument-lists as the WordPress “equivalents” but there are some discrepancies: style- and markup related arguments are not applicable to WP-dTree (but gets passed through for the noscript content).
There is also some inconsistency within WordPress, like some methods takes sortby while others takes sort_column . I’ve tried for WP-dTree to accept both but I’m sure I’ve missed a bunch of these cases.

So, to find out what arguments are definetly available grab the default $args :

  • wpdt_get_archives_defaults();
  • wpdt_get_categories_defaults();
  • wpdt_get_taxonomies_defaults()
  • wpdt_get_pages_defaults();
  • wpdt_get_links_defaults();
  • wpdt_get_menu_defaults();

They all return associative arrays whith all arguments defaulted.


Name