我正在使用Wordpress主题并尝试使用target =“_ blank”在新标签页中打开此链接,但我不确定在何处/如何放置它。如果您可以将其添加到您的答案中的下面示例中,我将不胜感激。感谢
请注意,我已经尝试过其他类似帖子的建议,但到目前为止我的主题还没有。因此,我觉得这不是一个重复的帖子。感谢
<?php
if(!empty($theme_options['feature_var_1_url_1']) ) {
echo '<a href="'.$theme_options['feature_var_1_url_1'].'">';
echo $theme_options['feature_var_1_title_1'];
echo '</a>';
}else{
echo $theme_options['feature_var_1_title_1'];
}
?>
答案 0 :(得分:0)
你走了:
<?php
if(!empty($theme_options['feature_var_1_url_1']) ) {
echo '<a target="_blank" href="'.$theme_options['feature_var_1_url_1'].'">';
echo $theme_options['feature_var_1_title_1'];
echo '</a>';
}else{
echo $theme_options['feature_var_1_title_1'];
}
?>