Wordpress entfernen中的Profilfelder

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress entfernen中的Profilfelder相关的知识,希望对你有一定的参考价值。

Code in functions.php einfügen
  1. <!-- Entfernt die Felder Aim, Jabber, Yim -->
  2.  
  3. add_filter('user_contactmethods','hide_profile_fields',10,1);
  4.  
  5. function hide_profile_fields( $contactmethods ) {
  6. unset($contactmethods['aim']);
  7. unset($contactmethods['jabber']);
  8. unset($contactmethods['yim']);
  9. return $contactmethods;
  10. }

以上是关于Wordpress entfernen中的Profilfelder的主要内容,如果未能解决你的问题,请参考以下文章

可以profilehooks,写.prof文件吗?

rails ruby​​-prof 和基准测试

如何让 ruby​​-prof 忽略 Ruby 核心/标准库/gem 方法?

如何使用表扫描优化查询?

在 node.js --prof 输出中,这个名字奇怪的 C++ 函数在做啥?

如何使用 java -prof 选项获取在 Tomcat 上运行的 java 程序的分析输出?