Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: link_category

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1054
1055      $cats = get_categories(array('type' => 'link', 'orderby' => $order, 'order' => $direction, 'hierarchical' => 0));
1056
1057      // Display each category
1058      if ( $cats ) {
1059           foreach ( (array) $cats as $cat ) {
1060                // Handle each category.
1061
1062                // Display the category name
1063                echo '  <li id="linkcat-' . $cat->term_id . '" class="linkcat"><h2>' . apply_filters('link_category', $cat->name ) . "</h2>\n\t<ul>\n";
1064                // Call get_links() with all the appropriate params
1065                get_links($cat->term_id, '<li>', "</li>", "\n", true, 'name', false);
1066
1067                // Close the last category
1068                echo "\n\t</ul>\n</li>\n";
1069           }
1070      }
1071 }
1072