majuscle to the first character of the custom post title on wordpress

115 Views Asked by At

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 :-(

2

There are 2 best solutions below

0
On

here is the code that i use :

 <?php 
                      // The Query
                      query_posts( array ( 'post_type' => 'question', 'posts_per_page' => 10 ) );
                      // The Loop
                     while ( have_posts() ) : the_post(); ?>
                        <li>
                            <h2><a href="<?php the_permalink(); ?>"><?php echo ucfirst(the_title('', '', false));?></a></h2>
                            <p class="questionexcerpt"> <?php the_excerpt(); ?> </p>

                        </li>

                      <?php endwhile; // Reset Query 
                      wp_reset_query();              
                      ?>
1
On

You forgot to echo the output in the second example.

<a href="<?php the_permalink(); ?>"><?php echo ucfirst(the_title('', '', false));?></a>

Update:

I just found in the wordpress codex that you should add a parameter to return the output. I have edited the code.