Hi,
I am relatively new to Disqus and am trying to figure out how to get
threads to be linked to multiple posts/pages in WordPress. So I have
two threads; using
http://disqus.com/api/3.0/threads/list.json I can
see that they each have identifiers corresponding to their WP post
IDs, e.g.:
"identifiers": [
"12225 "
],
I am able to update the thread's identifier (using
http://disqus.com/api/3.0/threads/update.json) :
"identifiers": [
"12225asdf"
],
but can not see how to add multiple identifiers. I have tried both
multiple "identifier" params to the update hook, and passing a single
comma-separated list of post IDs, but neither will assign multiple IDs
to the thread.
Even if I figure this out, I am not sure that this will gain me the
desired behavior: having this thread appear on each page (which may
contain other threads as well). It looks like the URL of the page is
also a unique identifier for a thread, which would preclude being able
to do what I'm looking for. Is this possible using Disqus?
Thanks,
Eric