|

Remove Unwanted Profile Fields

Below is the code you would use to hide unwanted Profile fields. 1 2 3 4 5 6 7 8 add_filter(’user_contactmethods’,’hide_profile_fields’,10,1);   function hide_profile_fields( $contactmethods ) { unset($contactmethods[’aim’]); unset($contactmethods[’jabber’]); unset($contactmethods[’yim’]); return $contactmethods; }add_filter('user_contactmethods','hide_profile_fields',10,1); function hide_profile_fields( $contactmethods ) { unset($contactmethods['aim']); unset($contactmethods['jabber']); unset($contactmethods['yim']); return $contactmethods; }

|

Add Another Navigation Bar

Place this code in the functions.php file to add another navigation area to your website 1 2 3 4 5 6 7 8 9 add_action( ‘init’, ‘mk_nav_menu’ );   function mk_nav_menu() { register_nav_menus( array( ‘header-sector-menu’ => __( ‘Header Sector Menu’ ) ) ); }add_action( 'init', 'mk_nav_menu' ); function mk_nav_menu() {…

Getting Started with WordPress SEO, Analytics and Related Tools
|

Getting Started with WordPress SEO, Analytics and Related Tools

Get found, measure your results, and then redesign. Here are the slides from my presentation at WordCampNYC on June 9, 2012. To learn more, contact us about our Analytics related services. Especially if you’re just getting started with WordPress, I have provided links to recommended plugins. The slides also show some…

End of content

End of content