I am able to hide the Title and Slug input fields:
add_action('admin_init', 'hide_title');
function hide_title() {
remove_post_type_support('post', 'title');
remove_post_type_support('page', 'title');
}
I am also able to change the placeholder text for the Title input field:
function wpb_change_title_text( $title ){
$title = 'Enter page address here';
return $title;
}
add_filter( 'enter_title_here', 'wpb_change_title_text' );
But still no luck with creating my own Title and Slug input boxes