Indicates if there is a pagination in this post. By default, the WordPress global $multipage is used. You can set this filter to false to show Helpful on every page of a single post.
/**
* @param bool $multipage
* @return bool
*/
add_filter('helpful/the_content/is_multipage', function($multipage) {
$multipage = false;
return $multipage;
});
Was this helpful?
Vote now and show me if you like or helped the content. After that, you can also leave feedback if you have a few more words to say.