Created
August 22, 2015 07:08
-
-
Save developer-anuragsingh/05a01292cdf2b40a53c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Change default 'Set featured image' text for any specific post type | |
add_action( 'current_screen', 'thisScreen' ); | |
function thisScreen() { | |
$currentScreen = get_current_screen(); | |
if( $currentScreen->post_type === "YOUR_POST_TYPE" ) { | |
add_filter( 'admin_post_thumbnail_html', 'new_html_text_for_feature_image' ); | |
} | |
} | |
function new_html_text_for_feature_image( $content ) { | |
return $content = str_replace( __( 'Set featured image' ), __( 'Set banner image' ), $content); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment