You can alter the title via the pc_theme_title() function in meta_boxes.php.
If you want to edit meta data I would recommend this SEO Plugin:
https://ww.wp.xz.cn/plugins/wordpress-seo/
Thanks for the advice. For now I just want to augment the <title>. I found ‘api >classes > meta_boxes.php’ and changed changed this line
‘<title><?php $this->pc_theme_title(); ?>’
to
‘</title> to <title><?php $this->pc_theme_title(); ?> – Environmental Aggregate and Material Services, LLC</title>’
I hoped the change would be reflected site wide in the browser but there is no change. I’m using the designfolio-child theme and I tried uploading the modified file to both the child and the original with no luck. The pages are here — http://www.enviroagmat.com/wp/ Any advice is appreciated.
You need to edit the pc_theme_title() function itself in meta_boxes.php.
Try changing the line on 682 (shown below) to append your custom message:
echo $theme_title;
Got it. Thanks for your help.