WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
302 | <?php if ( current_user_can( 'import' ) ) : ?> |
303 | <p><?php printf(__('Categories can be selectively converted to tags using the <a href="%s">category to tag converter</a>.'), 'import.php') ?></p> |
304 | <?php endif; ?> |
305 | </div> |
306 | <?php elseif ( 'post_tag' == $taxonomy && current_user_can( 'import' ) ) : ?> |
307 | <div class="form-wrap"> |
308 | <p><?php printf(__('Tags can be selectively converted to categories using the <a href="%s">tag to category converter</a>.'), 'import.php') ;?></p> |
309 | </div> |
310 | <?php endif; |
311 | do_action('after-' . $taxonomy . '-table', $taxonomy); |
312 | ?> |
313 |
|
314 | </div> |
315 | </div><!-- /col-right --> |
316 |
|
317 | <div id="col-left"> |
318 | <div class="col-wrap"> |
319 |
|
320 | <?php |