I try to capitalize the first character of a custom post title on wordpress
I found this solution here:
uppercase issue for title in wordpress
here is the code :
<a href="<?php the_permalink(); ?>"><?php echo ucfirst(get_the_title());?></a>
it works well for normal content (post) on wordpress.
By cons, I can not use it on a costum post !
I tried also this :
<a href="<?php the_permalink(); ?>"><?php ucfirst(the_title());?></a>
but its not working :-(
here is the code that i use :