Changeset 10710
- Timestamp:
- 03/04/2009 10:54:10 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/media.php
r10709 r10710 465 465 if ( !empty($src) ) 466 466 $html = "<img src='$src' alt='$alt'$class />"; 467 $html = apply_filters('image_send_to_editor_url', $html, $src, $alt, $align); 467 468 return media_send_to_editor($html); 468 469 } … … 556 557 if ( !empty($title) && !empty($href) ) 557 558 $html = "<a href='$href' >$title</a>"; 559 $html = apply_filters('audio_send_to_editor_url', $html, $href, $title); 558 560 return media_send_to_editor($html); 559 561 } … … 609 611 if ( !empty($title) && !empty($href) ) 610 612 $html = "<a href='$href' >$title</a>"; 613 $html = apply_filters('video_send_to_editor_url', $html, $href, $title); 611 614 return media_send_to_editor($html); 612 615 } … … 662 665 if ( !empty($title) && !empty($href) ) 663 666 $html = "<a href='$href' >$title</a>"; 667 $html = apply_filters('file_send_to_editor_url', $html, $href, $title); 664 668 return media_send_to_editor($html); 665 669 }
Note: See TracChangeset
for help on using the changeset viewer.