Slide 18
Slide 18 text
@wpmark
https://highrise.digital
function wpmark_title_here( $title, $post ) {
if ( 'post' === get_post_type( $post ) ) {
$title = 'Article Title';
}
return $title;
}
add_action( 'enter_title_here', 'wpmark_title_here', 10, 2 );
apply_filters( 'enter_title_here', __( 'Enter title here' ), $post );
/wp-admin/edit-form-advanced.php