Ticket #32101: filter_to_header_data.patch
File filter_to_header_data.patch, 721 bytes (added by , 9 years ago) |
---|
-
wp-admin/includes/plugin.php
99 99 $plugin_data['AuthorName'] = $plugin_data['Author']; 100 100 } 101 101 102 return $plugin_data;102 return apply_filters('plugin_header_data', $plugin_data); 103 103 } 104 104 105 105 /** -
wp-includes/functions.php
4446 4446 $all_headers[ $field ] = ''; 4447 4447 } 4448 4448 4449 return $all_headers;4449 return apply_filters('theme_header_data', $all_headers); 4450 4450 } 4451 4451 4452 4452 /**