最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

admin - Add tab to profile.php wordpress plugin development

programmeradmin0浏览0评论

I already know how to add an extra field in user profile. But in my case I have A lot of field to add and It is good practice that your form is not too long. So I decided to implement tab panel in the top level of the form so that form is shorter and easy to use by the user. Anyone has the snippiest for this will be appreciated.

HERE IS MY SAMPLE CODE

add_action( 'show_user_profile', $plugin_admin, 'wp_user_social_tab' );
add_action( 'edit_user_profile', $plugin_admin, 'wp_user_social_tab' );
public function wp_user_social_tab( $user ) {
?>


<ul id="tabs">
    <li class="active">Tab 1</li>
    <li>Tab 2</li>
    <li>Tab 3</li>
</ul>

<?php 

}

What I want is to be like this

发布评论

评论列表(0)

  1. 暂无评论