Remove Content Editor box from Custom Post Type
The following snippet of code will remove the content editor box from a specific custom post type. /* This will remove the content editor box from the custom post type…
The following snippet of code will remove the content editor box from a specific custom post type. /* This will remove the content editor box from the custom post type…
Here is how to hide ALL update notifications in the Wordpress admin area for a specific username. So if you wanted to hide updates when your client logins to Wordpress…
If you want to add a front end form to login to your website you can do this using the following snippet of code on your template file. You can…
While strongly discouraged, sometimes you need to prevent Wordpress from automatically updating or from updating entirely. To accomplish this you just need to add two lines of code to your…
I was trying to find a way to filter my custom post types by category in the admin view and was having difficulty learning how to do it. After a…
The following snippet can be used to show content only to users who are currently logged in. if ( is_user_logged_in() ) {?> This will be shown to logged in users…