WP使Avatar成为超链接

我在wordpress模板的这一部分行中显示了团队成员的名称并对其进行超链接。该超链接将重定向到该成员的实际页面。

< h4 class="sc_team_item_title"> < ?php echo (!empty($post_options['link']) ? '< a href="'.esc_url($post_options['link']).'"> ' : '') . (!empty($post_data['post_id']) ? insurance_ancora_get_post_title($post_data['post_id']) : '') . (!empty($post_options['link']) ? '< /a> ' : ''); ?> < /h4>

该行上方是显示该团队成员照片的行:
< div class="sc_team_item_avatar"> < ?php insurance_ancora_show_layout($post_options['photo']); ?> < /div>

我想使该图片也成为指向该会员个人资料的超链接。我对PHP相当陌生, 而我尝试的一切都失败了。你能帮我忙吗?我想你需要的是代码的第一部分。如果你需要整个php文件, 请告诉我。
#1【WP使Avatar成为超链接】试试:(希望它对你有用)
< div style="cursor: pointer; " onclick="window.location='< ?php echo esc_url($post_options['link']); ?> '; " class="sc_team_item_avatar"> < ?php insurance_ancora_show_layout($post_options['photo']); ?> < /div>

或者检查var是否不为空可能更好
< div style="cursor: pointer; " onclick="window.location='< ?php if(!empty($post_options['link'])){ echo esc_url($post_options['link']); } ?> '; " class="sc_team_item_avatar"> < ?php insurance_ancora_show_layout($post_options['photo']); ?> < /div>

    推荐阅读