首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >使用wordpress插件的HTML表单操作?

使用wordpress插件的HTML表单操作?
EN

Stack Overflow用户
提问于 2016-07-04 15:44:19
回答 0查看 198关注 0票数 3

函数theme_options_panel(){ add_menu_page('ss title','Social Share','manage_options','theme-options','ss_callback');

代码语言:javascript
复制
   }
   add_action('admin_menu', 'theme_options_panel');

函数ss_callback(){

代码语言:javascript
复制
   $html .='<form action="index.php/wp-content/plugins/social_media/ss_query.php" method="post">';
   $html .= '<br> <br>';        
   $html .= '<p class="description">';
   $html .= 'Upload your social link  here.';
   $html .= '</p>';
   $html .= 'Facebook:'.'<input type="URL" name="fb" value="" />';
   $html .=  '</br>';
   $html .= 'Twitter:'.'<input type="URL"  name="tw" value=""  />';
   $html .=  '</br>';
   $html .= 'Linkedin:' . '<input type="URL"   name="lin" value="" />';  
   $html .=  '</br>';   
   $html .= '<input type="submit" name="submit" value="Save">';
   $html .= '</form>';

   echo $html;


}
EN

回答

页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/38179327

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档