Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_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

This hook occurs 2 times in this file.

Line Code
239           $id      = "popular-$taxonomy-$term->term_id";
240           $checked = in_array( $term->term_id, $checked_terms, true ) ? 'checked="checked"' : '';
241           ?>
242
243           <li id="<?php echo $id; ?>" class="popular-category">
244                <label class="selectit">
245                     <input id="in-<?php echo $id; ?>" type="checkbox" <?php echo $checked; ?> value="<?php echo (int) $term->term_id; ?>" <?php disabled( ! current_user_can( $tax->cap->assign_terms ) ); ?> />
246                     <?php
247                     /** This filter is documented in wp-includes/category-template.php */
248                     echo esc_html( apply_filters( 'the_category', $term->name, '', '' ) );
249                     ?>
250                </label>
251           </li>
252
253           <?php
254      }
255      return $popular_ids;
256 }
257
 
Line Code
287
288      if ( empty( $categories ) ) {
289           return;
290      }
291
292      foreach ( $categories as $category ) {
293           $cat_id = $category->term_id;
294
295           /** This filter is documented in wp-includes/category-template.php */
296           $name    = esc_html( apply_filters( 'the_category', $category->name, '', '' ) );
297           $checked = in_array( $cat_id, $checked_categories, true ) ? ' checked="checked"' : '';
298           echo '<li id="link-category-', $cat_id, '"><label for="in-link-category-', $cat_id, '" class="selectit"><input value="', $cat_id, '" type="checkbox" name="link_category[]" id="in-link-category-', $cat_id, '"', $checked, '/> ', $name, '</label></li>';
299      }
300 }
301
302 /**
303  * Adds hidden fields with the data for use in the inline editor for posts and pages.
304  *
305  * @since 2.7.0