Add Custom User Profile Fields

Posted by & filed under WordPress.

Place the code below into your functions.php file to add custom user profile fields. Edit or add lines as you see fit. Remember not to remove the line: return $contactmethods; otherwise this won’t work. // CUSTOM USER PROFILE FIELDS function my_custom_userfields( $contactmethods ) { // ADD CONTACT CUSTOM FIELDS $contactmethods[‘contact_phone_office’] = ‘Office Phone’; $contactmethods[‘contact_phone_mobile’] =

Continue reading →

Add your custom post types to your sites main RSS feed by default

Posted by & filed under WordPress.

// ADD CUSTOM POST TYPES TO THE DEFAULT RSS FEED function custom_feed_request( $vars ) { if (isset($vars[‘feed’]) && !isset($vars[‘post_type’])) $vars[‘post_type’] = array( ‘post’, ‘site’, ‘plugin’, ‘theme’, ‘person’ ); return $vars; } add_filter( ‘request’, ‘custom_feed_request’ );

Include custom post types in the search results

Posted by & filed under WordPress.

// MAKE CUSTOM POST TYPES SEARCHABLE function searchAll( $query ) { if ( $query->is_search ) { $query->set( ‘post_type’, array( ‘site’, ‘plugin’, ‘theme’, ‘person’ )); } return $query; } add_filter( ‘the_search_query’, ‘searchAll’ );