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
237           $id      = "popular-$taxonomy-$term->term_id";
238           $checked = in_array( $term->term_id, $checked_terms, true ) ? 'checked="checked"' : '';
239           ?>
240
241           <li id="<?php echo $id; ?>" class="popular-category">
242                <label class="selectit">
243                     <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 ) ); ?> />
244                     <?php
245                     /** This filter is documented in wp-includes/category-template.php */
246                     echo esc_html( apply_filters( 'the_category', $term->name, '', '' ) );
247                     ?>
248                </label>
249           </li>
250
251           <?php
252      }
253      return $popular_ids;
254 }
255
 
Line Code
285
286      if ( empty( $categories ) ) {
287           return;
288      }
289
290      foreach ( $categories as $category ) {
291           $cat_id = $category->term_id;
292
293           /** This filter is documented in wp-includes/category-template.php */
294           $name    = esc_html( apply_filters( 'the_category', $category->name, '', '' ) );
295           $checked = in_array( $cat_id, $checked_categories, true ) ? ' checked="checked"' : '';
296           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>';
297      }
298 }
299
300 /**
301  * Adds hidden fields with the data for use in the inline editor for posts and pages.
302  *
303  * @since 2.7.0