Want to change core code without changing core code.
-
In wp-admin/includes/media.php
There resides these lines.if ( ! empty( $meta['title'] ) ) $title = $meta['title'];I want that changed to:
if ( ! empty( $meta['file'] ) ) $file = $file['file'];I know this works for what im doing, but would like some way to evoke this without changing the core file. Is there a way to do this?
Thanks.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Want to change core code without changing core code.’ is closed to new replies.