I think, this is not so easy possible, on the media-page in Admin-area is it not possible to check the post_type of your CPT. Normaly you can change strings with the follow small source, an example.
if ( is_admin() )
add_filter( 'gettext', array( 'fb_string_translate', 'gettext_filter' ), 10, 1 );
class fb_string_translate {
static function gettext_filter( $str ) {
$from_to = array();
$post_type = get_post_type();
if ( 'my_post_type' === $post_type )
$from_to = array( 'Insert into Post' => 'Insert into Test' );
return strtr($str, $from_to);
}
}
But it is important, that you check, on wich page is the author in admin and on the iframe of the media page it is not possible to read the post_type; maybe you find this var and then it is possible with the example source.
Related Posts:
- Submit post and upload image from front-end
- How to disable generation of default image sizes for some custom post types?
- How can I bulk upload images and automatically create posts for each one at the same time?
- Use a separate upload folder for custom post attachment upload
- Handling front-end file uploads, considering safety and ease of use
- Hide “Add media”, HTML editor from TinyMCE
- Creating a metabox to upload multiple images, Ignoring The Featured Image
- Set custom upload path for custom post type only?
- How to hide CPT files from media library programmatically
- Add metabox with media uploader in a custom post type [duplicate]
- Remove tabs from media uploader for a CPT
- Removing Image Sizes for Custom Post Type
- How to Removing fields from the Media Uploader/Gallery on a Custom Post Type Edit Page
- Image size filtering in Media uploader according to custom post type
- Change upload_dir folder at a certain cpt but cant change back
- Limit upload by file type only for certain custom post type
- wp is not defined error using wp.media to create a custom image uploader
- Upload Image from Front End and Resize
- MP3 Manager for WordPress
- How to rename image at uploading on specific plugin or post-type in WordPress
- Cannot attach media when capabilities added to custom post type
- window.send_to_editor and jQuery .attr() conflicts with multiple custom upload image meta boxes
- Remove fields on media uploader for custom page type – not working for “From Computer” or “From Url” tabs?
- Duplicate Custom Header Functionality into the post edit screen
- Force documents to appear in Featured Image dialogue
- how to get URL of media uploaded to WordPress via media_handle_sideload()
- Display users uploaded files as posts
- Get image post ID in media upload
- WordPress 3.5 Media Uploader – Only allow 1 upload and certain file types
- Add a button or image button that calls wp functions in the wp-admin
- How to Create an Image Upload Box for Custom Posts?
- How to get the upcoming post ID from front end?
- Custom Post Type Video – Online/Offline
- How to update post meta on uploaded image from a custom form?
- frontend image post uploader
- Checking if $_FILE isset for an array of file upload metaboxes
- How to: wordpress job listing and candidates details
- How to add multiple images to a custom post type without plugin [closed]
- Why won’t this jQuery code work?
- Create a custom post type for a photo post
- File sharing platform for user contributions? [closed]
- Cannot upload featured image to a custom post type
- Invalid file type when using wp_upload_bits to upload PDF to a custom post type
- Insert into post button missing on custom post type
- Why this didn’t work if i use get_the_ID(), but works if i pass the numeric id
- Make it impossible to save a custom post type with both video and image selected?
- Multi Photo Upload with Caption on Front End for Custom Post Type
- Create Custom Post Type PDF File (Like Media) Then Add Searchable Custom Fields
- Custom Upload Directory for Custom Post Types
- Custom post type media upload error with custom user role
- adding a shortcode into a custom post type
- Custom Post Type to Upload Images
- Allow authors to create article image
- Changing upload directory and migrating old attachments
- Storing revisions of metadata for custom post type
- Select All in Parent Category, Group by Child Category?
- setup_postdata is not returning any values
- Make the ‘all’ filter default instead of ‘mine’ in a custom post type
- Remove base slug in CPT & CT, use CT in permalink
- custom taxonomy – Template not working
- Query current and future events, ordered by begin date
- List Posts of a Custom Post Types Ordered by Terms of a Custom Taxonomy?
- Removing Duplicate Custom Taxonomy Terms from within a Dropdown Select?
- Remove custom post type slug not working for child pages
- I am facing problem in my archive page , it is partially working
- Check if admin is editing page or custom post type
- Make slug as ID Number for custom post types
- Custom Image Thumbnails of Different Sizes
- Changing number of posts per page on CPT-archive.php, have tried 20-30 code chunks so far
- Prevent stripping MathML tags on post save
- How to set order for a custom post type
- Use Custom Post Type archive page for the taxonomies term archive page
- Is it possible to have dedicated page for parent/child taxonomy?
- Custom post type permalink returns 404
- Different slug taxonomy for two different CPT
- Getting WordPress Flexslider Item Number
- Why does my taxonomy have a category style div id?
- Postname on unique permalink structure appends “-2” for a custom post type. How can I get this to stop happening?
- Different column width in 2 rows with bootstrap and custom post types-different classes needed
- Custom post type tags not showing in search
- Correct way of adding taxonomy to a custom post type
- Multiple custom post type queries causing wrong post types to be grabbed in taxonomy + single templates?
- Using global $post; with custom post types
- Why will comments not remain open on custom post types?
- Get related custom post by specifics custom post ID
- Add extra elements to the_post in a custom post_type
- custom post template not getting picked for posts with Unicode title
- Using get_post_type with a custom URL format?
- Search Custom Post Types in WordPress
- get comments for custom post type
- Query pulling all taxonomies, not one I am specifying
- Filter Content on all Post Types
- How to query all custom posts of a certain type and checking what category they have
- Post Editor: display categories from current post type taxonomy only?
- Exclude a custom category from a list
- How to customize admin edit page – custom type
- Add Image field to CPT
- Create a list of months based posts
- Can a user drop a HTML Shadow DOM into a blog post?
- How to alter query so that image changes in order every time page is refreshed