当前位置: 首页>>代码示例>>PHP>>正文


PHP TravelHelper::get_location_temp方法代码示例

本文整理汇总了PHP中TravelHelper::get_location_temp方法的典型用法代码示例。如果您正苦于以下问题:PHP TravelHelper::get_location_temp方法的具体用法?PHP TravelHelper::get_location_temp怎么用?PHP TravelHelper::get_location_temp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TravelHelper的用法示例。


在下文中一共展示了TravelHelper::get_location_temp方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: balanceTags

<?php

$c = TravelHelper::get_location_temp();
?>
<div class="loc-info text-right hidden-xs hidden-sm">
    <h3 class="loc-info-title"><?php 
the_title();
?>
</h3>
    <p class="loc-info-weather">
       <span class="loc-info-weather-num">
       <?php 
echo balanceTags($c['temp']);
?>
       </span>
       <?php 
echo balanceTags($c['icon']);
?>
    </p>
    <ul class="loc-info-list">
        <?php 
$hotel = new STHotel();
if ($hotel->is_available()) {
    $min_price = get_post_meta(get_the_ID(), 'min_price_st_hotel', true);
    $min_price = TravelHelper::format_money($min_price);
    $offer = get_post_meta(get_the_ID(), 'offer_st_hotel', true);
    if (!empty($min_price) and !empty($offer)) {
        $page_search = st_get_page_search_result('st_hotel');
        if (!empty($page_search)) {
            $link = add_query_arg(array('location_id' => get_the_ID()), get_the_permalink($page_search));
        } else {
开发者ID:HatchForce,项目名称:bachtraveller,代码行数:31,代码来源:html.php


注:本文中的TravelHelper::get_location_temp方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。