We know and see that, when we open a new post page in wordpress then a default text display in title box which is 'Enter title here' and looks like that:
you can change this default text 'Enter title here' with your own sentence. for this you need copy this code:
After copy paste it in to your wordpress blogs themes 'functions.php' file and save. now again open a new post page and you can see changed title box like that:
you can change 'এখানে পোস্টের শিরোনাম লিখুন..' with which you want.
Thanks for visiting and reading my blog post.
you can change this default text 'Enter title here' with your own sentence. for this you need copy this code:
function title_text_input( $title ){Problem to copy? try here!!
return $title = 'এখানে পোস্টের শিরোনাম লিখুন..';
}
add_filter( 'enter_title_here', 'title_text_input' );
After copy paste it in to your wordpress blogs themes 'functions.php' file and save. now again open a new post page and you can see changed title box like that:
you can change 'এখানে পোস্টের শিরোনাম লিখুন..' with which you want.
Thanks for visiting and reading my blog post.
0 comments:
Post a Comment
Comments here