I can see two very obvious flaws that might be holding you back.
$t=date("H");
gives you a formatted date as a string while if ($t<"12")
and else if ($t<"18")
are trying to do maths on words.
Consider $t=(int)date("H");
(force the answer to be a whole number) with if ($t<12)
and else if ($t<18)
which at least does maths with numbers.
Related Posts:
- Find out if logged in user is not subscriber
- Get multiple roles with get_users
- How to Merge Two Authors Into One?
- Whats the best way to share user data across multiple WordPress websites?
- User-edit role setting distinct from wp_capabilities? [closed]
- Disallowing Users of a Custom Role from Deleting or Adding Administrators?
- What the user_status column?
- Hide Admin Menu for Specific User ID who has administrator Role
- Problem with Hebrew characters in username
- Display edit link if post author is current user
- Change user’s display name programmatically
- Do not allow users to create new posts and pages
- Send activation email to user after signup [duplicate]
- wp_update_user() does not update user_data
- Set user after wp_create_user?
- Sort get_users by custom field
- How to add follow functionality to multi-author wordpress site?
- Get user input from a form
- How to add wordpress username after url?
- ACF Upload Image in front-end with custom form
- User fields that can be edited by administrator?
- Admins can’t edit each other’s posts
- Update user_login to change username
- Can I bulk register contributors for a new blog
- show cimy user fields in users.php with manage_users_columns
- Add custom fields to the user profile
- Undeleting a deleted user
- A way to count logged in users and display count?
- stop login if user_status equal zero
- Disable user profile editing for one user
- Is it possible to get the currently logged in admin’s IP?
- Rule to redirect non logged in User to Custom Registration/login Page in .htaccess file
- Sort users by userID by default on users.php
- How to delete user on logout and when session expires?
- Remove Capabilities from WP admin for specific user role
- wordpress user roles are not working
- What is proper way to store info such as user marking a post as favorite? In post meta or user meta?
- What are some best practices for user exit strategy?
- Is there a way to identify a user in a custom REST API method? [duplicate]
- WP_User_Query – searching multiple fields
- wordpress disable login for unverified user
- Problem with automatic role change through cron job
- Search Function on a plugin WordPress User
- Replace Gravatar with UserPhoto in All Users Coulmn view
- Calling User Nickname
- How redirect after registration?
- Print profile details as PDF or from modal window
- create new users in db starting at what ID?
- About WordPress capabilities [closed]
- No more administrator roles / permissions after WordPress upgrade
- How to display text if profile fields are not filled?
- Load user by specific role
- Order users by user role
- Get user by meta key – WP multi site
- Force users to use password with specifications
- Change user slug in Buddypress
- Creating a user from a different website
- Give users alternative/second avatar that is rectangle sized
- New User Save Filter
- Inserting current user ID into Post for Author
- Difference between is_user_logged_in and $_session[‘uname’]
- Assigning multiple or additional capabilities to specific users or how to create additional roles like bbpress roles?
- Using my own user table
- Add number of members to “Right Now” dashboard widget
- How can I add authors in WordPress and assign them a picture?
- wp_generate_password sets password but can’t login using created password
- add class to element if user is not logged in [closed]
- How to verify which WordPress user requested the API in ASP .NET Core?
- Get users meta and show to attribute
- How can admins to be notified of changes when users change their WP profiles?
- Can I add a unique code for each user based on the location?
- Can you Recover a WordPress User from a Backup
- wp-admin/users.php Add a column with last name
- Is nicename the same as nickname in WP?
- 502 Error when edit some users
- How do I delete a wordpress user from giant database?
- get_users – Sort by a different meta_value than search criteria
- How to prevent deleteting specific user?
- Display recent members
- Update user counts in admin interface
- How to get the username for a custom link
- To save user info on the same page by form submiting
- Groups roles & capabilities
- Button for users to upgrade their user role + Button to show current user role!
- Restrict Access to the User Profile
- How do I Limit the number of pages a non-subscriber can see?
- Username has been exposed
- How To Find The ID Of All Registered Users?
- How to order posts by the user_login that corresponds to a meta_value (which is a user id)?
- How to get only 1 role from user
- Retrieve New user’s ID
- Restrict access to certain dashboard pages based on user id
- how to show logged in members username in wordpress content
- How to expire guest users after 1.5 hours logged in?
- hide woo commerce dashboard status and reports from woo commerce from specific users but display to other users
- User agent stylesheet distorting site [closed]
- Remove @gmail.com from WordPress username
- How to create a specific role to manage users
- How to track all users logged into a site?
- Export user data from Squirrly’s Starbox plugin?