Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: after-{$taxonomy}-table

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
276 <?php if ( current_user_can( 'import' ) ) : ?>
277 <p><?php printf(__('Categories can be selectively converted to tags using the <a href="%s">category to tag converter</a>.'), 'import.php') ?></p>
278 <?php endif; ?>
279 </div>
280 <?php elseif ( 'post_tag' == $taxonomy && current_user_can( 'import' ) ) : ?>
281 <div class="form-wrap">
282 <p><?php printf(__('Tags can be selectively converted to categories using the <a href="%s">tag to category converter</a>'), 'import.php') ;?>.</p>
283 </div>
284 <?php endif;
285 do_action('after-' . $taxonomy . '-table', $taxonomy);
286 ?>
287
288 </div>
289 </div><!-- /col-right -->
290
291 <div id="col-left">
292 <div class="col-wrap">
293
294 <?php