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