本文整理汇总了PHP中STReview::is_review_need_booked方法的典型用法代码示例。如果您正苦于以下问题:PHP STReview::is_review_need_booked方法的具体用法?PHP STReview::is_review_need_booked怎么用?PHP STReview::is_review_need_booked使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类STReview
的用法示例。
在下文中一共展示了STReview::is_review_need_booked方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_post_type
*
* Created by ShineTheme
*
*/
/*
* If the current post is protected by a password and the visitor has not yet
* entered the password we will return early without loading the comments.
*/
if (post_password_required()) {
return;
}
$potype = get_post_type(get_the_ID());
$item_id = get_the_ID();
$obj = get_post_type_object($potype);
$name = $obj->labels->singular_name;
$is_review_need_booked = STReview::is_review_need_booked();
?>
<div id="comments" class="comments-area">
<?php
if ((int) get_comments_number()) {
?>
<ul class="booking-item-reviews list">
<?php
wp_list_comments(array('style' => 'ul', 'short_ping' => true, 'avatar_size' => 74, 'callback' => array('TravelHelper', 'reviewlist')));
?>
</ul>
<!-- .comment-list -->
<div class="gap gap-small"></div>