babble icon indicating copy to clipboard operation
babble copied to clipboard

Media translation

Open Fab1en opened this issue 10 years ago • 1 comments

Enable media to be translated. I mean

  1. galleries present in translated posts should display
  2. images caption and title should be translatable

Fab1en avatar May 07 '15 14:05 Fab1en

Here is a list of places in the core code that prevent using a shadow post type to early to replace the requested attachment post :

1 In wp_get_attachment_link (source):

if ( 'attachment' != $post->post_type )
        return false;

2 In wp_get_attachment_link (source) :

if ( empty( $_post ) || ( 'attachment' != $_post->post_type ) || ! $url = wp_get_attachment_url( $_post->ID ) )
        return __( 'Missing Attachment' );

Fab1en avatar May 07 '15 14:05 Fab1en