Forum
sharing URL
I am trying to get a url to link to a Facebook link for quick sharing, however it not posting the complete url. rather than share for example : https://gochattervideos.com/blog/post.php?s=2016-10-12-are-you-ready-for-christmas its shares: https://gochattervideos.com/blog/post.php
<a class="facebook" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=<?php perch_page_url(array (
'include_domain' => true,
)); ?>">
<span class="icon-facebook" aria-hidden="true">
</a>
perch_page_url()
doesn't include any query string arguments, so you'll need to add those. You can useperch_get('s')
to get the value ofs
from the query string.