Login User Logout User
All posts by
Delete User
Delete A User User Deleted Hook
Does email exist
Validate email address
Is email address valid?
User Registration
WordPress user registration WordPress has built in user registration functionality, however it is username or email address based and not brilliant visually. Enable user registration via wordpress Settings > General > Membership > Anyone can register User register https://yoursite.com/wp-admin https://yoursite.com/wp-login.php?action=register Adding a custom field to new user registration Note – this will not work with […]
Button from css (turn link into a button)
Link to be turned into a button: CSS Align button left / right / center margin: auto; will not work with an inline-block. You need to set the text alignment of the containing element to set the alignment, e.g. Centre align a group of buttons Put the buttons inside: <div class=”MyButtonContainer”></div>
Javascript in WordPress
$ causes a clash in wordpress so you need to Change the ‘$’ in this: to this: Reason: https://mkyong.com/jquery/jquery-is-not-working-in-wordpress-solution/
.Users
Is user logged in Get Logged In User ID Is user an administrator? Does user exist?
WebView
Apps like Samsung messenger open SMS links in WebView instead of the phones full web browser. WebView loads web pages and renders raw HTML data, but it is not a full-featured browser. By default it disables various controls like zooming, JavaScript, modification of user agent string, and so forth and it doesn’t carry any of […]
WordPress simple checks
All theme and plugin php files checks There must be no whitespace after the closing ?> tag of all theme and plugin PHP files.