Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: attachment_innerHTML

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
554      $id = (int) $id;
555
556      if ( $innerHTML = get_attachment_icon($id, $fullsize, $max_dims))
557           return $innerHTML;
558
559      $post = & get_post($id);
560
561      $innerHTML = $post->post_title;
562
563      return apply_filters('attachment_innerHTML', $innerHTML, $post->ID);
564 }
565
566 function prepend_attachment($content) {
567      $p = '<p class="attachment">';
568      $p .= get_the_attachment_link(false, true, array(400, 300));
569      $p .= '</p>';
570      $p = apply_filters('prepend_attachment', $p);
571
572      return "$p\n$content";