• Resolved agentkiller007

    (@agentkiller007)


    Hi,i want to retrieve ID of particular(each) review of all reviews submitted on my Post Page.I used get_the_ID() inside review template but it is giving me ID of post to which my reviews are assigned. Pls Help…

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    You can use the $review PHP object in the review.php template directly.

    For example:

    <div class="glsr-review" id="review-<?= $review->ID; ?>">
        {{ title }}
        {{ rating }}
        {{ date }}
        {{ assigned_to }}
        {{ content }}
        {{ avatar }}
        {{ author }}
        {{ response }}
    </div>
    Thread Starter agentkiller007

    (@agentkiller007)

    It worked! Thanks for your quick and valuable support.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘UNABLE to retrieve review ID’ is closed to new replies.