Created
April 15, 2012 12:13
-
-
Save inerds/2392386 to your computer and use it in GitHub Desktop.
Change set featured image box text (Wordpress), just paste it to functions.php
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
function custom_admin_post_thumbnail_html( $content ) { | |
return $content = str_replace( __( 'Set featured image' ), __( 'Set thumbnail image' ), $content); | |
} | |
add_filter( 'admin_post_thumbnail_html', 'custom_admin_post_thumbnail_html' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment