<?php
if ($page->path == "/blog/posts/"){
echo "<script type='text/javascript' src='//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55e5693b9add30c6'></script>";
}
?>
I'm trying to output a script on my blog posts only. They're all children of /blog/posts/ so I thought the above might work.
That seems to work only when the page loaded is exactly /blog/posts/
How can I tweak this to work on any page containing /blog/posts/ in it's URL / path and not just /blog/posts/ ?
I've been to the API and tried a few variations using the following
if ($page->path *= "/blog/posts/")
but I think they're more selectors for fields?