• The title of my post is not showing in full. Example:

    Here is the title of the posting:
    How the wrong photos became the faces of the viral #BringBackOurGirls campaign

    But here is how it is showing on my site:

    How the wrong photos became the faces of the…

    However, I want the title to show in full. This could be something with in my theme but not sure where to edite to show in full. Below is the link to my site:
    http://www.wiyiyit.com

    Thanks

Viewing 1 replies (of 1 total)
  • At the moment it looks like your theme might be doing something like this

    <?php echo substr(the_title(”, ”, FALSE), 0, 32) . ‘…’; ?>

    However if you want to to simply display the title with a link to the post then you need to replace that code with this code

    <?php the_title(); ?>

    The issue you will have is finding all instances in your theme where this method has been used to truncate the title.

    Cheers,
    Alex

Viewing 1 replies (of 1 total)
  • The topic ‘Title of my posting is not showing in full’ is closed to new replies.