将此代码放入functions.php
文件
add_action( \'show_user_profile\', \'my_show_extra_profile_fields\' );
add_action( \'edit_user_profile\', \'my_show_extra_profile_fields\' );
function my_show_extra_profile_fields( $user ) { ?>
<h3>Go back to home</h3>
<table class="form-table">
<tr>
<td>
<a href="<?php echo home_url(); ?>" title="Go back">Home</a>
</td>
</tr>
</table>
<?php }
检查
this tutorial 了解更多详细信息。
你可以把你想要的任何标记,我只是修改了这个例子,并放了一个链接到主页。希望这有帮助!