Skip to content

Instantly share code, notes, and snippets.

@yanknudtskov
Created May 19, 2020 14:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yanknudtskov/ce5c8480edd67a5414697e4aeea5d708 to your computer and use it in GitHub Desktop.
Save yanknudtskov/ce5c8480edd67a5414697e4aeea5d708 to your computer and use it in GitHub Desktop.
Change the label for the ACF Post Title field when used in acf_form( $args )
<?php
add_filter( 'enter_title_here', 'yanco_change_title_text' );
function yanco_change_title_text( $title ){
$screen = get_current_screen();
if ( 'leverandor' == $screen->post_type ) {
$title = 'Virksomhedsnavn';
}
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment