當前位置: 首頁>>代碼示例>>PHP>>正文


PHP BYT_Theme_Utils::display_pager方法代碼示例

本文整理匯總了PHP中BYT_Theme_Utils::display_pager方法的典型用法代碼示例。如果您正苦於以下問題:PHP BYT_Theme_Utils::display_pager方法的具體用法?PHP BYT_Theme_Utils::display_pager怎麽用?PHP BYT_Theme_Utils::display_pager使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在BYT_Theme_Utils的用法示例。


在下文中一共展示了BYT_Theme_Utils::display_pager方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _e

				<p><?php 
    _e('We apologize for any inconvenience, please hit back on your browser or if you are an admin, enter some content.', 'bookyourtravel');
    ?>
</p>
			</div>
		</article>
		<?php 
}
?>
		<!--bottom navigation-->
		<nav class="page-navigation bottom-nav">
			<a href="#" class="scroll-to-top" title="<?php 
esc_attr_e('Back up', 'bookyourtravel');
?>
"><?php 
_e('Back up', 'bookyourtravel');
?>
</a> 
			<div class="pager">
			<?php 
global $wp_query;
BYT_Theme_Utils::display_pager($wp_query->max_num_pages);
?>
			</div>
		</nav>
		<!--//bottom navigation-->
	</section>
	<!--//three-fourth content-->
<?php 
get_sidebar('right');
get_footer();
開發者ID:alikris,項目名稱:OTA,代碼行數:31,代碼來源:index.php

示例2: esc_attr_e

		</div>
		<nav class="page-navigation bottom-nav">
			<!--back up button-->
			<a href="#" class="scroll-to-top" title="<?php 
    esc_attr_e('Back up', 'bookyourtravel');
    ?>
"><?php 
    _e('Back up', 'bookyourtravel');
    ?>
</a> 
			<!--//back up button-->
			<!--pager-->
			<div class="pager">
				<?php 
    $total_results = $accommodation_results['total'];
    BYT_Theme_Utils::display_pager(ceil($total_results / $posts_per_page));
    ?>
			</div>
		</nav>
	<?php 
}
// end if ( $query->have_posts() )
?>
	</div><!--//deals clearfix-->
</section>
<?php 
wp_reset_postdata();
wp_reset_query();
if ($page_sidebar_positioning == 'both' || $page_sidebar_positioning == 'right') {
    get_sidebar('right');
}
開發者ID:alikris,項目名稱:OTA,代碼行數:31,代碼來源:page-accommodation-list.php

示例3: foreach

		<section id="car_rentals" class="tab-content <?php 
            echo $first_display_tab == 'car_rentals' ? 'initial' : '';
            ?>
">
			<div class="deals">
			<?php 
            $car_rental_results = $byt_car_rentals_post_type->list_car_rentals(0, -1, 'post_title', 'ASC', $location_id);
            if (count($car_rental_results) > 0 && $car_rental_results['total'] > 0) {
                foreach ($car_rental_results['results'] as $car_rental_result) {
                    global $post, $car_rental_class;
                    $post = $car_rental_result;
                    setup_postdata($post);
                    $car_rental_class = 'full-width';
                    get_template_part('includes/parts/car_rental', 'item');
                }
            } else {
                echo '<p>' . __('Unfortunately there are no car rental offers at this location at the moment.', 'bookyourtravel') . '</p>';
            }
            ?>
			<?php 
            BYT_Theme_Utils::render_tab_extra_fields('location_extra_fields', $location_extra_fields, 'car_rentals', $location_obj);
            ?>
			</div>
		</section>		
		<!--/Car rentals-->	
		<?php 
        }
        ?>
	
		<?php 
        foreach ($tab_array as $tab) {
開發者ID:JDjimenezdelgado,項目名稱:old-mmexperience,代碼行數:31,代碼來源:single-location.php


注:本文中的BYT_Theme_Utils::display_pager方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。