本文整理汇总了PHP中tribe_events_tab_index函数的典型用法代码示例。如果您正苦于以下问题:PHP tribe_events_tab_index函数的具体用法?PHP tribe_events_tab_index怎么用?PHP tribe_events_tab_index使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了tribe_events_tab_index函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: esc_attr
echo esc_attr($rule_type);
?>
][][custom][duration][hours]"
data-field="custom-duration-hours"
value="{{custom.duration.hours}}"
/>
<?php
_ex('hours', 'custom recurrence duration', 'the-events-calendar');
?>
<input type="number"
min="0"
max="59"
step="1"
tabindex="<?php
tribe_events_tab_index();
?>
"
name="recurrence[<?php
echo esc_attr($rule_type);
?>
][][custom][duration][minutes]"
data-field="custom-duration-minutes"
value="{{custom.duration.minutes}}"
/>
<?php
_ex('minutes', 'custom recurrence duration', 'the-events-calendar');
?>
</span>
</div>
示例2: setup_overwrite_geoloc
public function setup_overwrite_geoloc($post)
{
if ($post->post_type != Tribe__Events__Main::VENUE_POST_TYPE) {
return;
}
$overwrite_coords = (bool) get_post_meta($post->ID, self::OVERWRITE, true);
$_lat = get_post_meta($post->ID, self::LAT, true);
$_lng = get_post_meta($post->ID, self::LNG, true);
?>
<tr id="overwrite_coordinates">
<td class='tribe-table-field-label'><?php
esc_attr_e('Use latitude + longitude', 'tribe-events-calendar');
?>
:</td>
<td>
<input tabindex="<?php
tribe_events_tab_index();
?>
" type="checkbox" id="VenueOverwriteCoords" name="venue[OverwriteCoords]" value="true" <?php
checked($overwrite_coords);
?>
/>
<input class=" " disabled title='<?php
esc_attr_e('Latitude', 'tribe-events-calendar');
?>
' placeholder='<?php
esc_attr_e('Latitude', 'tribe-events-calendar');
?>
' tabindex="<?php
tribe_events_tab_index();
?>
" type="text" id="VenueLatitude" name="venue[Lat]" value="<?php
echo esc_attr(is_numeric($_lat) ? (double) $_lat : '');
?>
" />
<input class=" " disabled title='<?php
esc_attr_e('Longitude', 'tribe-events-calendar');
?>
' placeholder='<?php
esc_attr_e('Longitude', 'tribe-events-calendar');
?>
' tabindex="<?php
tribe_events_tab_index();
?>
" type="text" id="VenueLongitude" name="venue[Lng]" value="<?php
echo esc_attr(is_numeric($_lng) ? (double) $_lng : '');
?>
" />
</td>
</tr>
<?php
}