PHP Button Custom link

时间:2015-11-13 作者:mykgta

在wp模板的这部分代码中,我想将“Book Now”按钮的永久链接url更改为自定义链接示例:“www.mywebsite.com”

byt_render_field("description clearfix", "", "", $accommodation_description_html, \'\', false, true);
if (!empty($current_url) && $current_url == $list_user_accommodations_url)
    byt_render_link_button($submit_accommodations_url . \'?fesid=\' . $accommodation_id, "gradient-button clearfix", "", __(\'Edit\', \'bookyourtravel\')); 
else 
    byt_render_link_button($accommodation_obj->get_permalink(), "gradient-button clearfix", "", __(\'Book now\', \'bookyourtravel\')); 

1 个回复
最合适的回答,由SO网友:ville6000 整理而成

我不知道是什么byt_render_link_button() 是的,但我试试这个。

<?php 
byt_render_field("description clearfix", "", "", $accommodation_description_html, \'\', false, true);
if (!empty($current_url) && $current_url == $list_user_accommodations_url) {
     byt_render_link_button($submit_accommodations_url . \'?fesid=\' . $accommodation_id, "gradient-button clearfix", "", __(\'Edit\', \'bookyourtravel\'));   
} else {
     byt_render_link_button( \'http://www.mywebsite.com\', "gradient-button clearfix", "", __(\'Book now\', \'bookyourtravel\') );
} 

相关推荐

无法在模板函数.php中使用IS_HOME

我试图在标题中加载一个滑块,但只在主页上加载。如果有帮助的话,我正在使用Ultralight模板。我正在尝试(在template functions.php中)执行以下操作:<?php if ( is_page( \'home\' ) ) : ?> dynamic_sidebar( \'Homepage Widget\' ); <?php endif; ?> 但这行不通。现在,通过快速的google,我似乎需要将请