Archived topic
Title placeholder
5 replies · Started by Jamal on May 9, 2017
Hi
I would like to change the title placeholder for a specific custom post type. Looks like there is a filter available but i somehow cant get it to work.
https://wordpress.stackexchange.com/a/145331
function jam_title_placeholder( $title ){
$screen = get_current_screen();
// For CPT Lunch meny
if ( 'Lunch Meny' == $screen->post_type ) {
$title = 'Veckonummer';
}
return $title;
}
add_filter( 'enter_title_here', 'jam_title_placeholder' );
Hi Jamal,
Which titles? Your content titles?
Yes Tom, the post content titles on the post edit screen.
If I understand, this might help: https://wordpress.stackexchange.com/questions/6818/change-enter-title-here-help-text-on-a-custom-post-type
Ok its working now,thanks !
You're welcome! :)