在我的wordpress管理员中,我有一个Agent输入屏幕,这是分类法:
//agent taxonomy
$options[] = array(
'id' => _WSH()->set_term_key('property_agent'),
'types' => array('property_agent'),
'title' => __('property Category Settings', SH_NAME),
'priority' => 'high',
'template' =>
array(
array(
'type' => 'upload',
'name' => 'agent_img',
'label' => __( 'Agent image', SH_NAME ),
),
array(
'type' => 'textbox',
'name' => 'facebook_link',
'label' => __( 'Facebook Link', SH_NAME ),
),
array(
'type' => 'textbox',
'name' => 'twitter_link',
'label' => __( 'Twitter Link', SH_NAME ),
),
array(
'type' => 'textbox',
'name' => 'instagram_link',
'label' => __( 'Instagram Link', SH_NAME ),
),
array(
'type' => 'textbox',
'name' => 'google_plus_link',
'label' => __( 'Google Plus Link', SH_NAME ),
),
array(
'type' => 'textbox',
'name' => 'linked_in_link',
'label' => __( 'Linked in Link', SH_NAME ),
),
array(
'type' => 'textbox',
'name' => 'phone',
'label' => __( 'Phone Number', SH_NAME ),
),
array(
'type' => 'textbox',
'name' => 'email',
'label' => __( 'Email', SH_NAME ),
),
),
);
我目前正在通过上述脚本通过以下方式呼叫突出显示的电子邮件:
<p><i class="fa fa-envelope-o"></i><span style='font-size:11px'><?php echo sh_set($meta1, 'email');?></span></p>
目前,我的联系表单在提交时将使用以下脚本行转到管理电子邮件:
$to = get_option( 'admin_email' );
我要更改的是,而不是转到管理员的电子邮件,而是转到突出显示的被叫座席的电子邮件。由于会有不同的代理,因此我需要将电子邮件从上面的脚本发送到被叫电子邮件。
获取管理员分类标准的完整脚本:
<!--======= AGENT DETAILS =========-->
<div class="row">
<div class="col-sm-3">
<?php echo wp_get_attachment_image(_sh_get_attachment_id_from_src(sh_set($meta1, 'agent_img')), '270x288');?>
</div>
<div class="col-sm-9">
<?php $term_list = wp_get_post_terms(get_the_id(), 'property_agent', array("fields" => "names")); ?>
<h5><?php echo implode( ', ', (array)$term_list );?></h5>
<!--======= SOCIAL ICONS =========-->
<ul class="social_icons">
<li class="facebook"><a href="<?php echo sh_set($meta1, 'facebook_link');?>"><i class="fa fa-facebook"></i></a></li>
<li class="twitter"><a href="<?php echo sh_set($meta1, 'twitter_link');?>"><i class="fa fa-twitter"></i></a></li>
<!--<li class="googleplus"><a href="<?php echo sh_set($meta1, 'google_plus_link');?>"><i class="fa fa-google-plus"></i></a></li>-->
<!--<li class="linkedin"><a href="<?php echo sh_set($meta1, 'linked_in_link');?>"><i class="fa fa-linkedin"></i></a></li>-->
<li class="instagram"><a href="<?php echo sh_set($meta1, 'instagram_link');?>"><i class="fa fa-instagram"></i></a></li>
</ul>
<p><?php $description = $agents_term[0]->description; echo $description;?></p>
<!--======= AGENT INFOR =========-->
<ul class="agent-info">
<li>
<p><i class="fa fa-phone"></i> <?php echo sh_set($meta1, 'phone');?> </p>
</li>
<li>
<p><i class="fa fa-envelope-o"></i><span style='font-size:11px'><?php echo sh_set($meta1, 'email');?></span></p>
</li>
<li>
<p><i class="fa fa-home"></i> <?php printf( esc_html__('Listed %s Properties', 'realtor'), sh_set(sh_set($agents_term, 0 ) , 'count' ) );?> </p>
</li>
</ul>
</div>
</div>