Archives for Wp Tips - Page 5
Change Default Order Of Post Or Page In WordPress Admin
As we all know, posts are showing in latest first order in post grid of wordpress admin and same with the pages also. We can filter them by using above filters as per our choice. But in few situations we…
how to delete uncategorized category from posts
As we all know uncategorized is a default category working for wordpress posts. As we talk about the original behavior of wordpress posts, then we know that if we are not assigning any category to our post then it will automatically…
Check a username exist or not in WordPress
When we are working in wordpress, sometimes we need to check if a username exists in our database or not. In this case we have a username and we want to check whether it is in our database or associated…
Check email is valid or not in WordPress
Here we are discussing about the situation when we need to check whether an email we are using is valid or not. As we know wordpress has so many predefined useful functions, in the same reference we are discussing about…
Check a email exists in WordPress
Sometimes we have a email address and we want to check whether it exists in our wordpress database or not. To handle these type of situations we will use default wordpress function that is : email_exists( $email ); // where…