Making a client area in WordPress – Any good tutorials or plugins?

First, for invoicing/billing use the WP Invoice plugin: http://wordpress.org/extend/plugins/wp-invoice/ The “members” plugin may also be useful: http://wordpress.org/extend/plugins/members/ For a custom redirect, to send them to custom pages rather than just the admin panel use: http://wordpress.org/extend/plugins/peters-login-redirect/ If you had them register, greet them with a custom welcome message on the page they log-in to using this … Read more

Exclude pages from WordPress search result page

Add this to your child themes functions file using a code editor like Notepad++. You will need to change the page I.D’s in the code to your own. Exclude Specific Pages From Search Results add_filter( ‘pre_get_posts’, ‘exclude_pages_search_when_logged_in’ ); function exclude_pages_search_when_logged_in($query) { if ( $query->is_search && is_user_logged_in() ) $query->set( ‘post__not_in’, array( 1, 2, 3, 4, 5 … Read more