Wordpress Titles: If Longer Than 50 Characters, Show Ellipsis

前端 未结 9 1417
谎友^
谎友^ 2021-02-01 19:06

I have a wordpress site with titles, and if the title has more than 50 characters I need to add an ellipsis (...) at the end of the title and stop the title at 50 characters. Be

9条回答
  •  無奈伤痛
    2021-02-01 19:45

    use 'strlen'

    eg: 
    
      50) ? (substr(get_the_title(), 0, 50) . "...") : get_the_title())?>
    

提交回复
热议问题