Tree view Plugin for Wordpress

jquery accessible tree 8 Useful Wordpress Treeview Plugins


1. CMS Tree Page View

cms treeview plugin 8 Useful Wordpress Treeview Plugins
Adds a tree of all your pages or custom posts. Use drag & drop to reorder your pages, and edit, view, add, and search your pages.

2.Admin Menu Tree Page View

admin tree page view 8 Useful Wordpress Treeview Plugins
Get a tree view of all your pages directly in the admin menu. Search, edit, view, re-order/sort and add pages – all with just one click away!

3. WordPress Page Tree

page tree view 8 Useful Wordpress Treeview Plugins
Creates a expand/collapse tree for showing all your pages on your site or in your administration “pages” panel.

4. WP-dTree

wp dtree 8 Useful Wordpress Treeview Plugins
Dynamic tree-widgets to replace the standard archives, categories, pages and link lists.

5. Site Page Tree

site page tree 8 Useful Wordpress Treeview Plugins
Sidebar widget displays a navigable tree of pages and subpages with expand/collapse capability.

6. Content Headings Tree

content heading tree 8 Useful Wordpress Treeview Plugins
Content Headings Tree Plugin enables a widgets which prints a tree list of the page content headings.

7. WP-Parsi navigation trees

wp parsi navigation 8 Useful Wordpress Treeview Plugins
This plugin create dynamic expand/collapse tree-widget navigation from wordpress nav menu.

8. JQuery Accessible Tree

jquery accessible tree 8 Useful Wordpress Treeview Plugins
JQuery Accessible Tree is an tree of your blog’s recent posts, recent comments, categories and meta and uses the JQuery WAI-ARIA enabled tree.

Create Your Own Juicy Tabbed Slider

Thanks again i'm back with a very helpful tutorial of Slider for Your Website. We’ll be using the popular Nivo Slider to handle the animation, so let’s dig in!  

Download Source Files 

Demo View It Online


Let’s Dig In!

Alright, so assuming that you’ve gone through the design phase of this tutorial, now you should have a pretty basic slider element in Photoshop (or Fireworks) format. I’m going to write up this tutorial as a “standalone” slider – meaning it’ll essentially be the only element on the page that we create… but using just a few extra steps after the fact, you should be able to add this to your own designs and position/resize it any way that you want!
What’s better is that this is completely skinnable and resizable – so if you’ve made any heavy customizations in the free PSD that we handed out, you’ll be able to incorporate your franken-modifications here as well!

Step 1: Download the Nivo Slider


Go ahead and download the latest version of the Nivo Slider from their page. The version we’ll be using is Version 2.4, but unless they completely overhaul their entire codebase, chances are very good that the steps in this tutorial will still work in version 2.5, 2.6, and ever onward.
It’s important to note that we’re not re-inventing the wheel here. We’re pretty much just going to be using their “demo.html” file as our own base of operations. We won’t deviate far from the official Usage Documentation either.
As a web designer, I do a lot of work where I’m simply modifying and hijacking other people’s open source code – you probably do the same. It’s an important skill to have unless you’re intent on learning each and every major coding language out there and you’re willing to constantly keep your knowledge up to date. Frankly, I think that’s kind of silly – so figuring out how to use other people’s code is one of the most important skills that you can have.
In most cases (as in this one), all that’s truly required is a rough knowledge of HTML and CSS and the ability to read documentation.
We’ll start out the next step by opening up the “demo” folder – so go ahead and do that before we move on.

Step 2: Understanding the Basic Setup

In this step, we’re simply going to attempt to get an idea for how the Nivo Slider works. Every slider out there is going to work a little bit different, so it’s worth taking a few minutes to familiarize yourself with the particular script that you intend to use on a project.
If you take a quick look at the code for the Nivo Slider (inside the demo.html file), you’ll notice that all of the major styling and structure is being handled from the “style.css” file. In fact, the actual HTML code is pretty simple once you’ve referenced the appropriate scripts in the HEAD section of demo.html.
Let’s start our walkthrough by looking at the lines of code from the header. We won’t need to change these, but they need to be present in any file that we want to use the slider on:
  1. <!-- Usually in the <head> section -->  
  2. <link rel="stylesheet" href="nivo-slider.css" type="text/css" media="screen" />  
  3. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>  
  4. <script src="jquery.nivo.slider.pack.js"></script>  
Next, let’s peek at the raw HTML that generates the slider:
  1. <!-- Then somewhere in the <body> section -->  
  2. <div id="slider">  
  3.     <img src="images/slide1.jpg" alt="" />  
  4.     <a href="http://dev7studios.com">  
  5.         <img src="images/slide2.jpg" alt="" title="#htmlcaption" />  
  6.     </a>  
  7.     <img src="images/slide3.jpg" alt="" title="This is an example of a caption" />  
  8.     <img src="images/slide4.jpg" alt="" />  
  9. </div>  
Finally, we won’t be dealing with captions in this particular slider, so you can pretty much disregard the next lines (unless you want to do your own customization of the slider later on):
  1. <div id="htmlcaption" class="nivo-html-caption">  
  2.     <strong>This</strong> is an example of a <em>HTML</em> caption with <a href="#">a link</a>.  
  3. </div>  
So, really, all that’s required for you to understand is the basic HTML that generates the slider (shown above in the second block of code). Since we won’t be dealing with captions in our slider, you can further simplify the code to something like this:
  1. <div id="slider-wrapper">  
  2.     <div id="slider">  
  3.         <img src="images/slide1.jpg" alt="" />  
  4.         <img src="images/slide2.jpg" alt="" />  
  5.         <img src="images/slide3.jpg" alt="" />  
  6.         <img src="images/slide4.jpg" alt="" />  
  7.     </div>  
  8. </div>  
That’s not so bad right? It’s essentially just a couple wrapped DIV elements with images inside.

The CSS for the Nivo Slider

The CSS is what’s going to be doing the heavy lifting, so let’s take a peek at that:
  1. /*============================*/  
  2. /*=== Custom Slider Styles ===*/  
  3. /*============================*/  
  4. #slider-wrapper {  
  5.     background:url(images/slider.png) no-repeat;  
  6.     width:998px;  
  7.     height:392px;  
  8.     margin:0 auto;  
  9.     padding-top:74px;  
  10.     margin-top:50px;  
  11. }  
  12.   
  13. #slider {  
  14.     position:relative;  
  15.     width:618px;  
  16.     height:246px;  
  17.     margin-left:190px;  
  18.     background:url(images/loading.gif) no-repeat 50% 50%;  
  19. }  
  20. #slider img {  
  21.     position:absolute;  
  22.     top:0px;  
  23.     left:0px;  
  24.     display:none;  
  25. }  
  26. #slider a {  
  27.     border:0;  
  28.     display:block;  
  29. }  
  30.   
  31. .nivo-controlNav {  
  32.     position:absolute;  
  33.     left:260px;  
  34.     bottombottom:-42px;  
  35. }  
  36. .nivo-controlNav a {  
  37.     display:block;  
  38.     width:22px;  
  39.     height:22px;  
  40.     background:url(images/bullets.png) no-repeat;  
  41.     text-indent:-9999px;  
  42.     border:0;  
  43.     margin-right:3px;  
  44.     float:left;  
  45. }  
  46. .nivo-controlNav a.active {  
  47.     background-position:0 -22px;  
  48. }  
  49.   
  50. .nivo-directionNav a {  
  51.     display:block;  
  52.     width:30px;  
  53.     height:30px;  
  54.     background:url(images/arrows.png) no-repeat;  
  55.     text-indent:-9999px;  
  56.     border:0;  
  57. }  
  58. a.nivo-nextNav {  
  59.     background-position:-30px 0;  
  60.     rightright:15px;  
  61. }  
  62. a.nivo-prevNav {  
  63.     left:15px;  
  64. }  
  65.   
  66. .nivo-caption {  
  67.     text-shadow:none;  
  68.     font-familyHelveticaArialsans-serif;  
  69. }  
  70. .nivo-caption a {   
  71.     color:#efe9d1;  
  72.     text-decoration:underline;  
  73. }  
If you’re new to CSS, this might look intimidating at first… but most of you will see this for a fairly simple bit of styling code. Everything you need to resize and reskin the slider is here… and we only need to change a handful of lines of script to get this thing looking exactly like our version.
First though, we need to locate and re-skin the images that are currently being used for the slider with our own. If you open up the “/demo/images/” folder, you’ll see there’s just a couple main images that we want to reskin:
  • arrows.png (the Left / Right arrows)
  • bullets.png (the Dot indicators)
  • slider.png (the background frame)
  • background.png (optional)
  • loading.png (optional)

Re-skinning the Assets

If we were coding this slider from scratch, we’d probably start by carefully chopping it in Photoshop, piece by piece. However, since we’re working with a pre-existing set of “assets” (aka, the images used to create the background, bullets and arrows), it’s going to make a little bit more sense to skin the pre-existing assets rather than start from scratch.

Reskin the Bullets

Let’s start with the “bullets.png” file since it happens to be the most straight forward file. Go ahead and open it up in Photoshop:
Notice the basic structure of the file here. There are two graphics that will be positioned using CSS so that one appears at a time.
We already have our own bullet graphics from our own PSD, so we simply want to position them over the original elements and re-save the file:
In this case, we don’t even need to re-size the file at all… so we’re actually done reskinning the bullets! Save this new file over the original “bullets.png”.

Reskin the Arrows

The arrows are going to be one level more difficult, simply because our arrow graphics are larger than the original graphics. That’s fine though – we’ll still start by opening up the “arrows.png” file inside Photoshop.

It’s hard to see the arrows because they are transparent.
Once again, notice the structure of the file – two arrows, side by side this time – that will be positioned using CSS so that only one appears at a time.
The size of the graphic is 60x30px… but ours will have to be large enough to hold both of our bigger arrows. Having measured our own arrows (you can do this using the Rectangular Marquee tool and the Info panel), I’ve decided that the new dimensions should be 70x65px. This will be large enough to hold both arrows, as well as the light shadow that we want to appear next to each one.
We’re going to have to make a few changes to the size and positioning in the CSS, but this completes the initial reskin for the arrows. Save this new file over the original “arrows.png”.

Reskin the Background

Lastly, let’s re-skin the background graphic. The Nivo Slider demo uses an abstract sort of circle background – but we want to use our “frame and shadow” graphic for the background.
This swap is going to be similar to what we did with the arrows, but instead of needing to make our image larger, this time we actually need to save a smaller document. Notice how large the original image is:

998x392px – Scaled Down for the Site.
998x392px is the original background’s dimensions – We want it to be closer to 494x310px to match our own frame. This isn’t tough, but it’s a case where it’s going to make more sense just to grab a direct slice from our original PSD file.
Go ahead and turn off ALL layers (including the background) other than the frame and the shadow, then Crop the image down to about 20-25px of spacing around the frame just to be safe (we won’t want to accidentally crop our shadow):
As with the last two graphics, go ahead and save directly over the original image “slider.png”.

Save Our Image Slides

The original slider uses images that are 618×246 in size. Our slider uses images that are 430x250px though, so we need to save over the original slide images using our own cropped in versions. You can obviously use your own images here… but for the sake of simplicity, I’ve just cropped in the Pixar images that the demo used.
If you did want to use your own images, obviously you’ll want to name them uniquely (my_image1.jpg, my_image2.jpg, etc.), and then amend the image paths inside the demo.html document.

Tweaking the CSS to Fit Our New Skinned Images

The last step here is probably the trickiest as it requires a lot of trial and error. Our objective is going to be to tweak the original style.css file so that our slider matches our own design. The primary problem is that the original slider uses completely different dimensions for most of the major elements, so we need to carefully, through trial and error, sort out what our own dimensions should be.
Trial and Error in CSS can be done a few different ways – The “hard” way is to simply keep on tweaking the CSS file, saving it, and then previewing it in the browser. The easy way is to use a browser plugin like Firebug to actually test out your adjustments in the browser itself. If you haven’t picked up Firebug yet, I highly recommend doing so now. It’s a simple plugin that attaches to your browser.
I’m going to simply dish out the completed CSS file right now, then we’ll break it down step by step. I’ll mark every major line that was edited with a “/*= NEW =*/” note:
  1. /*============================*/  
  2. /*=== Custom Slider Styles ===*/  
  3. /*============================*/  
  4. #slider-wrapper {  
  5.     background:url(images/slider.png) no-repeat;  
  6.     width:494px/*= NEW =*/  
  7.     height:310px;  /*= NEW =*/  
  8.     margin:0 auto;  
  9.     padding-top:23px/*= NEW =*/  
  10.     margin-top:50px;  
  11. }  
  12.   
  13. #slider {  
  14.     position:relative;  
  15.     width:430px;  /*= NEW =*/  
  16.     height:250px;  /*= NEW =*/  
  17.     margin-left:32px;  /*= NEW =*/  
  18.     background:url(images/loading.gif) no-repeat 50% 50%;  
  19. }  
  20. #slider img {  
  21.     position:absolute;  
  22.     top:0px;  
  23.     left:0px;  
  24.     display:none;  
  25. }  
  26. #slider a {  
  27.     border:0;  
  28.     display:block;  
  29. }  
  30.   
  31. .nivo-controlNav {  
  32.     position:absolute;  
  33.     left:163px;  /*= NEW =*/  
  34.     bottombottom:12px;  /*= NEW =*/  
  35.     background#000000;  /*= NEW =*/  
  36.     -moz-border-radius: 10px;  /*= NEW =*/  
  37.     -webkit-border-radius: 10px;  /*= NEW =*/  
  38.     padding3px;  /*= NEW =*/  
  39.     border2px solid #CCC;  /*= NEW =*/  
  40.     opacity: 0.7;  /*= NEW =*/  
  41.     z-index: 99;  /*= NEW =*/  
  42.     }  
  43.       
  44.     .nivo-controlNav:hover{opacity: 1;}  /*= NEW =*/  
  45.       
  46. .nivo-controlNav a {  
  47.     display:block;  
  48.     width:22px;    
  49.     height:22px;   
  50.     background:url(images/bullets.png) no-repeat;  
  51.     text-indent:-9999px;  
  52.     border:0;  
  53.     margin-right:0px;  /*= NEW =*/  
  54.     float:left;  
  55. }  
  56. .nivo-controlNav a.active {  
  57.     background-position:0 -22px;  
  58. }  
  59.   
  60. .nivo-directionNav a {  
  61.     display:block;  
  62.     width:35px;  /*= NEW =*/  
  63.     height:65px;  /*= NEW =*/  
  64.     background:url(images/arrows.png) no-repeat;  
  65.     text-indent:-9999px;  
  66.     border:0;  
  67. }  
  68. a.nivo-nextNav {  
  69.     background-position:-35px 0;  /*= NEW =*/  
  70.     rightright: -40px;  /*= NEW =*/  
  71. }  
  72.   
  73. a.nivo-nextNav:hover{rightright: -41px;}  /*= NEW =*/  
  74.   
  75. a.nivo-prevNav {  
  76.     left:-40px;  /*= NEW =*/  
  77. }  
  78. a.nivo-prevNav:hover{left: -41px;}  /*= NEW =*/  
  79.   
  80. .nivo-caption {  
  81.     text-shadow:none;  
  82.     font-familyHelveticaArialsans-serif;  
  83. }  
  84. .nivo-caption a {   
  85.     color:#efe9d1;  
  86.     text-decoration:underline;  
  87. }  
  88.   
  89. .nivo-directionNav a{top: 40%;}  /*= NEW =*/  
Looking closely, you’ll notice that all of the changes (with the “/*= NEW =*/” note) fall into the same basic categories:
  • Width
  • Height
  • Positioning (left, right, top, bottom)
The only two exceptions are where we’ve added the background color and rounded corners to the “.nivo-controlNav” element and where we’ve adjusted the default positioning of the “.nivo-directionNav a” element (this second one was previously set by another stylesheet, so we’re overriding the default setting of 45% so our arrows are higher up on the slider).
The other new rule that we’ve added is the “a.nivo-prevNav:hover{left: -41px;}” rules for the left and right buttons. The purpose here is to add a subtle nudge to each button when you mouse over them.
If you’re planning on creating your own resized version of the slider, you’ll want to pay attention to the two spots where the overall height and width of the slider are set. In short, the “#slider-wrapper” and “#slider” elements are what control this – simply adjust the height and width parameters to match your own slider’s dimensions and you should be good to go.

Last Step – UnHiding the Left/Right Arrows

The final modification that I’ve decided to make from the original demo.html file is to unhide the arrow buttons. By default, the Nivo Slide hides these “directional” navigation controls – only showing them when your mouse is hovering over the slider. For us though, these elements are a key aesthetic that we wouldn’t want to hide.
To correct this, the Nivo Slider gives us a simple method of unhiding by adding a single option to the activation script. At the bottom of the demo.html file, find the following:
  1. <script>  
  2.     $(window).load(function() {  
  3.        $('#slider').nivoSlider();  
  4.    });  
  5.      
Now simply add the following option:
  1. directionNavHide:false  
So that the revised code looks like this:
  1. <script>  
  2.     $(window).load(function() {  
  3.         $('#slider').nivoSlider({directionNavHide:false});  
  4.     });  
  5.       
  6.   
  7. There is a full list of customizations that you can make through this method - check out the <a href="http://nivo.dev7studios.com/#usage" onclick="javascript:_gaq.push(['_trackEvent','outbound-article','nivo.dev7studios.com']);">Usage Page on Nivo Slider's</a> website for more notes.  

Conclusion

That’s it for this tutorial! While we haven’t coded a single thing from scratch, we have effective created a custom slider and then realized it in code using one of the best pre-built slider scripts out there on the net right now. I hope you’ve picked up a few new skills in this walkthrough – have fun customizing this and using it in your own design!

Create Custom Page Templates in WordPress

Hi , Today i will talk to yours about Custom template Page in Wordpress , a faculty member at the University of Texas at Dallas (UTD), will demonstrate how to take a typical blog structure, and morph it into custom layouts. Along the way, he discusses the inherent differences between posts and pages, how to create custom page templates, how to expedite the process of adding custom fields, and more.



Thank you so much