Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #203568

    Hi support,

    I want to concatenate all my blog posts with the same string…

    for example lets say string is ” XYZ”

    I want all my blog titles to be like

    post title 1 XYZ
    Post title 2 XYZ
    Post title 3 XYZ

    i dont know how to do it in single.php…this theme is so complicated

    #203614

    Hi abuhamid37!

    Open up wp-content\themes\enfold\includes\loop-index.php and replace

    
     echo $title;
    

    with

    
     echo $title . ' XYZ';
    

    Instead of XYZ insert your custom text.

    Regards,
    Peter

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘I want to concatenate title of my every blog post with a same string’ is closed to new replies.