LLMS_Reviews::process_review()

This function adds the review to the database. It is called by the AJAX handler when the submit review button is pressed. This function gathers the data from $_POST and then adds the review with the appropriate content.


Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.review.php

156
157
158
159
160
161
162
163
164
165
166
167
168
169
    'posts_per_page'   => 1,
    'post_type'        => 'llms_review',
    'post_status'      => 'publish',
    'post_parent'      => get_the_ID(),
    'author'           => get_current_user_id(),
    'suppress_filters' => true,
);
$posts_array = get_posts( $args );
 
/**
 * Filters the thank you text.
 *
 * @since 1.2.7
 *


Top ↑

Changelog Changelog

Changelog
Version Description
5.9.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.