Need help in the process of creating your own WordPress theme?
The extension adds the possibility for users to leave feedback impressions about a post (product, article, etc). This system can be activated for some post types, and replaces the default comments system.
fw_ext_feedback()
- displays summary information about the feedback received for a specific post.fw_ext_feedback
- allows you to add summary information about the feedback received for a specific post.fw_ext_feedback_listing_walker
- provides the ability to send a custom walker class object to use the when rendering the reviews. /** @internal */
function _filter_fw_ext_feedback_listing_walker() {
require dirname( __FILE__ ) . '/includes/extends/class-fw-feedback-stars-walker.php';
return new FW_Feedback_Stars_Walker();
}
add_filter( 'fw_ext_feedback_listing_walker', '_filter_fw_ext_feedback_listing_walker' );
The feedback-stars
is a child extension that allows visitors to appreciate a post using star rating.