Skip to content

Instantly share code, notes, and snippets.

@ellegaarddk
Last active October 22, 2018 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ellegaarddk/c0f6f87361975a3a7235cbb042932fca to your computer and use it in GitHub Desktop.
Save ellegaarddk/c0f6f87361975a3a7235cbb042932fca to your computer and use it in GitHub Desktop.
Omdøb titelfelt i Custom Post Type
function change_default_title( $title ){
$screen = get_current_screen();
if ( $screen->post_type == 'your_custom_post_type' ) {
return __( Skriv din egen tekst her', 'lang_domain' );
}
}
add_action('init', 'change_default_title');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment