Make wordpress read Album Artist id3 tag
-
Hi good evening everyone one,
How do I make wordpress read the Album artist id3 tag, by default wordpress reads the Title, Artist and Album only.I tried this code below but it didn’t work.
// Add id3 tags as meta keys add_filter( 'wp_get_attachment_id3_keys', $callback_id3 = function( $fields ) { $fields['Album Artist'] = 'Album Artist'; return $fields; } );
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Make wordpress read Album Artist id3 tag’ is closed to new replies.