本文整理汇总了PHP中BYT_Theme_Utils::get_current_page_url方法的典型用法代码示例。如果您正苦于以下问题:PHP BYT_Theme_Utils::get_current_page_url方法的具体用法?PHP BYT_Theme_Utils::get_current_page_url怎么用?PHP BYT_Theme_Utils::get_current_page_url使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BYT_Theme_Utils
的用法示例。
在下文中一共展示了BYT_Theme_Utils::get_current_page_url方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _e
?>
<p>
<?php
if (!empty($contact_error)) {
echo $contact_error;
} else {
_e('Thank you for contacting us. We will get back to you as soon as we can.', 'bookyourtravel');
}
?>
</p>
<?php
}
if (!$form_submitted || !empty($contact_error)) {
?>
<form action="<?php
echo esc_url(BYT_Theme_Utils::get_current_page_url());
?>
" id="contact-form" method="post">
<fieldset>
<div class="f-item">
<label for="contact_name"><?php
_e('Your name', 'bookyourtravel');
?>
</label>
<input type="text" id="contact_name" name="contact_name" required="required" value="<?php
echo esc_attr($contact_name);
?>
" />
</div>
<div class="f-item">
<label for="contact_email"><?php